pristine.cmake 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # SPDX-License-Identifier: Apache-2.0
  2. # NB: This could be dangerous to execute.
  3. macro(print_usage)
  4. message("
  5. usage: cmake -DBINARY_DIR=<build-path> -DSOURCE_DIR=<source-path>
  6. -P ${CMAKE_SCRIPT_MODE_FILE}
  7. mandatory arguments:
  8. -DBINARY_DIR=<build-path>: Absolute path to the build directory to pristine
  9. -DSOURCE_DIR=<source-path>: Absolute path to the source directory used when
  10. creating <build-path>
  11. ")
  12. # Making the usage itself a fatal error messes up the formatting when printing.
  13. message(FATAL_ERROR "")
  14. endmacro()
  15. if(NOT DEFINED BINARY_DIR OR NOT DEFINED SOURCE_DIR)
  16. print_usage()
  17. endif()
  18. if(NOT IS_ABSOLUTE ${BINARY_DIR} OR NOT IS_ABSOLUTE ${SOURCE_DIR})
  19. print_usage()
  20. endif()
  21. get_filename_component(BINARY_DIR ${BINARY_DIR} REALPATH)
  22. get_filename_component(SOURCE_DIR ${SOURCE_DIR} REALPATH)
  23. string(FIND ${SOURCE_DIR} ${BINARY_DIR} INDEX)
  24. if(NOT INDEX EQUAL -1)
  25. message(FATAL_ERROR "Refusing to run pristine in in-source build folder.")
  26. endif()
  27. file(GLOB build_dir_contents ${BINARY_DIR}/*)
  28. foreach(file ${build_dir_contents})
  29. if (EXISTS ${file})
  30. file(REMOVE_RECURSE ${file})
  31. endif()
  32. endforeach(file)