Rename variables for enabling/disabling shared/static libs

Avoids conflicts when using mingw-w64-cmake wrapper
This commit is contained in:
Martchus 2016-09-06 22:51:00 +02:00
parent 31be0c24ea
commit 909b5c2b57
1 changed files with 8 additions and 3 deletions

View File

@ -60,12 +60,17 @@ endif()
# options for deciding whether to build static and/or shared libraries
if(("${META_PROJECT_TYPE}" STREQUAL "library") OR ("${META_PROJECT_TYPE}" STREQUAL ""))
option(BUILD_STATIC_LIBS "whether to build static libraries (disabled by default)" OFF)
option(DISABLE_SHARED_LIBS "whether building dynamic libraries is disabled (prevents BUILD_SHARED_LIBS being re-enabled when using Qt Creator)" OFF)
option(ENABLE_STATIC_LIBS "whether to building static libraries is enabled (disabled by default)" OFF)
option(DISABLE_SHARED_LIBS "whether building dynamic libraries is disabled (enabled by default)" OFF)
if(DISABLE_SHARED_LIBS)
set(BUILD_SHARED_LIBS OFF)
else()
option(BUILD_SHARED_LIBS "whether to build dynamic libraries (enabled by default)" ON)
set(BUILD_SHARED_LIBS ON)
endif()
if(ENABLE_STATIC_LIBS)
set(BUILD_STATIC_LIBS ON)
else()
set(BUILD_STATIC_LIBS OFF)
endif()
endif()