You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
760 B
21 lines
760 B
9 years ago
|
include(RunCMake)
|
||
|
|
||
|
if (RunCMake_GENERATOR MATCHES "Visual Studio")
|
||
|
set(RunCMake-stderr-file CompileOptions-stderr-VS.txt)
|
||
|
run_cmake(CompileOptions)
|
||
|
endif()
|
||
|
if (RunCMake_GENERATOR STREQUAL "Xcode")
|
||
|
set(RunCMake-stderr-file CompileDefinitions-stderr-Xcode.txt)
|
||
|
run_cmake(CompileDefinitions)
|
||
|
elseif (RunCMake_GENERATOR MATCHES "Visual Studio")
|
||
|
set(RunCMake-stderr-file CompileDefinitions-stderr-VS.txt)
|
||
|
run_cmake(CompileDefinitions)
|
||
|
endif()
|
||
|
if (RunCMake_GENERATOR STREQUAL "Xcode")
|
||
|
set(RunCMake-stderr-file IncludeDirectories-stderr-Xcode.txt)
|
||
|
run_cmake(IncludeDirectories)
|
||
|
elseif (RunCMake_GENERATOR MATCHES "Visual Studio")
|
||
|
set(RunCMake-stderr-file IncludeDirectories-stderr-VS.txt)
|
||
|
run_cmake(IncludeDirectories)
|
||
|
endif()
|