Bläddra i källkod

deps-jansson: Enable -fPIC for non-gcc compilers

Always use -fPIC when not on WIN32 or APPLE and not just with gcc.
This allows for building obs with clang on linux and FreeBSD
without explicitly specifying -fPIC as compiler flag to cmake.
fryshorts 11 år sedan
förälder
incheckning
a02f2905b8
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      deps/jansson/CMakeLists.txt

+ 1 - 1
deps/jansson/CMakeLists.txt

@@ -94,7 +94,7 @@ if (MSVC)
    
 endif()
 
-if (NOT WIN32 AND (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX))
+if (NOT WIN32 AND NOT APPLE)
    set(CMAKE_C_FLAGS "-fPIC")
 endif()