Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

cmake_uninstall.cmake.in 1.1 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. # Reference -- https://cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
  2. if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  3. message(FATAL_ERROR "Cannot find install manifest: @CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  4. endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
  5. file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
  6. string(REGEX REPLACE "\n" ";" files "${files}")
  7. foreach(file ${files})
  8. message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
  9. if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
  10. exec_program(
  11. "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
  12. OUTPUT_VARIABLE rm_out
  13. RETURN_VALUE rm_retval
  14. )
  15. if(NOT "${rm_retval}" STREQUAL 0)
  16. message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
  17. endif(NOT "${rm_retval}" STREQUAL 0)
  18. else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
  19. message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
  20. endif(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
  21. endforeach(file)
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...