7 lines
225 B
CMake
7 lines
225 B
CMake
# Small helper to execute code see doc/manual/CMakeLists.txt
|
|
# for more information
|
|
if(EXISTS ${SOURCE})
|
|
string(REPLACE "\\ " " " CMD ${CMD})
|
|
separate_arguments(CMD)
|
|
execute_process(COMMAND ${CMD})
|
|
endif(EXISTS ${SOURCE})
|