https://github.com/Kitware/CMake
Revision 572797f9843a76a101e2092c6ba31b5453bd23c6 authored by Gregor Jasny on 08 February 2016, 18:39:05 UTC, committed by Brad King on 24 February 2016, 14:35:54 UTC
This field is not expected by newer versions.
1 parent 7e32bd9
Raw File
Tip revision: 572797f9843a76a101e2092c6ba31b5453bd23c6 authored by Gregor Jasny on 08 February 2016, 18:39:05 UTC
Xcode: Write refType only for Xcode 1.5
Tip revision: 572797f
BootstrapTest.cmake
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()
back to top