mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
10 lines
206 B
CMake
10 lines
206 B
CMake
|
|
execute_process(
|
|
COMMAND find ${LIBDIR} -name "*.sld"
|
|
COMMAND ${EXEC} ${GENMETA} ${VERSION}
|
|
OUTPUT_FILE ${OUT}
|
|
RESULT_VARIABLE error)
|
|
|
|
if(error)
|
|
message(FATAL_ERROR "${error}")
|
|
endif()
|