summaryrefslogtreecommitdiffstats
path: root/Tests/BootstrapTest.cmake
blob: 9c9fe09ac9a8c3aeace0debe95567444a020187b (plain)
1
2
3
4
5
6
7
8
9
10
file(MAKE_DIRECTORY "${bin_dir}")
message(STATUS "running bootstrap: ${bootstrap}")
execute_process(
  COMMAND ${bootstrap}
  WORKING_DIRECTORY "${bin_dir}"
  RESULT_VARIABLE result
  )
if(result)
  message(FATAL_ERROR "bootstrap failed: ${result}")
endif()