mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-23 22:40:25 +00:00
9 lines
226 B
CMake
9 lines
226 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})
|
|
|