2 Star 1 Fork 1

Opencv249/arm-opencv-lib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
cmake_uninstall.cmake 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Stevenfaker 提交于 2017-01-24 15:49 . add
# -----------------------------------------------
# File that provides "make uninstall" target
# We use the file 'install_manifest.txt'
# -----------------------------------------------
IF(NOT EXISTS "/opt/opencv/arm-opencv/install_manifest.txt")
MESSAGE(FATAL_ERROR "Cannot find install manifest: \"/opt/opencv/arm-opencv/install_manifest.txt\"")
ENDIF(NOT EXISTS "/opt/opencv/arm-opencv/install_manifest.txt")
FILE(READ "/opt/opencv/arm-opencv/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(
"/usr/bin/cmake" 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)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/YLCOpenCV/arm-opencv-lib.git
git@gitee.com:YLCOpenCV/arm-opencv-lib.git
YLCOpenCV
arm-opencv-lib
arm-opencv-lib
master

搜索帮助