aboutsummaryrefslogtreecommitdiffstats
path: root/src/gr-fading_ui/cmake/cmake_uninstall.cmake.in
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-11-03 18:10:49 +0100
committerNao Pross <np@0hm.ch>2021-11-03 18:10:49 +0100
commit2769a7182e38cfb604db8accaf1efa32c48e94f3 (patch)
tree0536d7a2f93a034f4c70db62891bd227a7f5c7c0 /src/gr-fading_ui/cmake/cmake_uninstall.cmake.in
parentDelete demo.py and and comments to sketch.py (diff)
parentReplace QPKS bit visualizations with eye diagrams (diff)
downloadFading-2769a7182e38cfb604db8accaf1efa32c48e94f3.tar.gz
Fading-2769a7182e38cfb604db8accaf1efa32c48e94f3.zip
Merge branch 'master' of github.com:NaoPross/Fading
Diffstat (limited to '')
-rw-r--r--src/gr-fading_ui/cmake/cmake_uninstall.cmake.in32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/gr-fading_ui/cmake/cmake_uninstall.cmake.in b/src/gr-fading_ui/cmake/cmake_uninstall.cmake.in
deleted file mode 100644
index 9ae1ae4..0000000
--- a/src/gr-fading_ui/cmake/cmake_uninstall.cmake.in
+++ /dev/null
@@ -1,32 +0,0 @@
-# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
-
-IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
- MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
-ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
-
-FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
-STRING(REGEX REPLACE "\n" ";" files "${files}")
-FOREACH(file ${files})
- MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
- IF(EXISTS "$ENV{DESTDIR}${file}")
- EXEC_PROGRAM(
- "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
- OUTPUT_VARIABLE rm_out
- RETURN_VALUE rm_retval
- )
- IF(NOT "${rm_retval}" STREQUAL 0)
- MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
- ENDIF(NOT "${rm_retval}" STREQUAL 0)
- ELSEIF(IS_SYMLINK "$ENV{DESTDIR}${file}")
- EXEC_PROGRAM(
- "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
- OUTPUT_VARIABLE rm_out
- RETURN_VALUE rm_retval
- )
- IF(NOT "${rm_retval}" STREQUAL 0)
- MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
- ENDIF(NOT "${rm_retval}" STREQUAL 0)
- ELSE(EXISTS "$ENV{DESTDIR}${file}")
- MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
- ENDIF(EXISTS "$ENV{DESTDIR}${file}")
-ENDFOREACH(file)