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.
14 lines
401 B
14 lines
401 B
# Verifies that the jobserver is present
|
|
add_custom_command(OUTPUT custom_command.txt
|
|
JOB_SERVER_AWARE ON
|
|
COMMENT "Should detect jobserver support"
|
|
COMMAND ${DETECT_JOBSERVER} "custom_command.txt"
|
|
)
|
|
|
|
# trigger the custom command to run
|
|
add_custom_target(dummy ALL
|
|
JOB_SERVER_AWARE ON
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/custom_command.txt
|
|
COMMAND ${DETECT_JOBSERVER} "custom_target.txt"
|
|
)
|