8ea7611bc3
When more than one value is given to the NAMES option this command by default will consider one name at a time and search every directory for it. Add a NAMES_PER_DIR option to tell this command to consider one directory at a time and search for all names in it.
10 lines
173 B
CMake
10 lines
173 B
CMake
include(RunCMake)
|
|
|
|
run_cmake(DirsPerName)
|
|
run_cmake(NamesPerDir)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "^(Windows|CYGWIN)$")
|
|
run_cmake(WindowsCom)
|
|
run_cmake(WindowsExe)
|
|
endif()
|