disabled the combination of BUILD_SHARED_LIBS and SFML_USE_STATIC_STD_LIBS in the build files
This commit is contained in:
parent
6790904c80
commit
eaa5ae9c55
@ -61,7 +61,12 @@ endif()
|
|||||||
# define an option for choosing between static and dynamic C runtime (Windows only)
|
# define an option for choosing between static and dynamic C runtime (Windows only)
|
||||||
if(WINDOWS)
|
if(WINDOWS)
|
||||||
sfml_set_option(SFML_USE_STATIC_STD_LIBS FALSE BOOL "TRUE to statically link to the standard libraries, FALSE to use them as DLLs")
|
sfml_set_option(SFML_USE_STATIC_STD_LIBS FALSE BOOL "TRUE to statically link to the standard libraries, FALSE to use them as DLLs")
|
||||||
|
|
||||||
|
# the following combination of flags is not valid
|
||||||
|
if (BUILD_SHARED_LIBS AND SFML_USE_STATIC_STD_LIBS)
|
||||||
|
message(FATAL_ERROR "BUILD_SHARED_LIBS and SFML_USE_STATIC_STD_LIBS cannot be used together")
|
||||||
|
endif()
|
||||||
|
|
||||||
# for VC++, we can apply it globally by modifying the compiler flags
|
# for VC++, we can apply it globally by modifying the compiler flags
|
||||||
if(COMPILER_MSVC AND SFML_USE_STATIC_STD_LIBS)
|
if(COMPILER_MSVC AND SFML_USE_STATIC_STD_LIBS)
|
||||||
foreach(flag
|
foreach(flag
|
||||||
|
Loading…
x
Reference in New Issue
Block a user