https://github.com/Kitware/CMake
Revision 98eafa9b5f346f3695befcc0b52f5206904c8309 authored by Brad King on 01 June 2016, 14:21:30 UTC, committed by Brad King on 01 June 2016, 14:30:34 UTC
Add section headers similar to the 3.5 release notes and move each
individual bullet into an appropriate section.  Revise a few bullets.
1 parent c5df748
Raw File
Tip revision: 98eafa9b5f346f3695befcc0b52f5206904c8309 authored by Brad King on 01 June 2016, 14:21:30 UTC
Help: Organize and revise 3.6 release notes
Tip revision: 98eafa9
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