Explorar el Código

Update CMakeLists.txt

blueloveTH hace 2 años
padre
commit
7046ab9b4a
Se han modificado 1 ficheros con 11 adiciones y 2 borrados
  1. 11 2
      CMakeLists.txt

+ 11 - 2
CMakeLists.txt

@@ -35,8 +35,17 @@ if(PK_USE_BOX2D)
     add_definitions(-DPK_USE_BOX2D)
 endif()
 
-option(PK_BUILD_SHARED_LIB "Build shared library" OFF)
-option(PK_BUILD_STATIC_LIB "Build static library" OFF)
+# PK_IS_MAIN determines whether the project is being used from root
+# or if it is added as a dependency (through add_subdirectory for example).
+if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
+  set(PK_IS_MAIN TRUE)
+  option(PK_BUILD_SHARED_LIB "Build shared library" OFF)
+  option(PK_BUILD_STATIC_LIB "Build static library" OFF)
+else()
+  set(PK_IS_MAIN FALSE)
+  option(PK_BUILD_SHARED_LIB "Build shared library" OFF)
+  option(PK_BUILD_STATIC_LIB "Build static library" ON)
+endif()
 
 option(PK_EXPORT_CXX_SYMBOLS "Export C++ symbols" OFF)