summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/try_run/WorkingDirArg.cmake
blob: 375a7033db641e7bb2730d374cf6bd6d9e8fc774 (plain)
1
2
3
4
5
6
7
8
9
10
11
include(${CMAKE_CURRENT_SOURCE_DIR}/${try_compile_DEFS})

try_run(RUN_RESULT COMPILE_RESULT ${try_compile_bindir_or_SOURCES}
  ${CMAKE_CURRENT_SOURCE_DIR}/src.c
  RUN_OUTPUT_VARIABLE RUN_OUTPUT
  WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/CMakeTmp/workdir
  )

if(RUN_RESULT)
  message(SEND_ERROR "try run failed with result: ${RUN_RESULT}")
endif()