Spaces:
Sleeping
Sleeping
File size: 189 Bytes
31726e5 |
1 2 3 4 5 6 7 8 9 |
execute_process(
COMMAND "${THRUST_BINARY}"
RESULT_VARIABLE EXIT_CODE
)
if (NOT "0" STREQUAL "${EXIT_CODE}")
message(FATAL_ERROR "${THRUST_BINARY} failed (${EXIT_CODE})")
endif ()
|