mirror of
https://github.com/alexkulya/pandaria_5.4.8.git
synced 2025-12-11 16:37:04 +00:00
34 lines
1.4 KiB
CMake
34 lines
1.4 KiB
CMake
# Copyright (C) 2011-2016 Project SkyFire <http://www.projectskyfire.org/
|
|
# Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
#
|
|
# This file is free software; as a special exception the author gives
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
# modifications, as long as this notice is preserved.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# from cmake wiki
|
|
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 \"${file}\"")
|
|
IF(EXISTS "${file}")
|
|
EXEC_PROGRAM(
|
|
"@CMAKE_COMMAND@" ARGS "-E remove \"${file}\""
|
|
OUTPUT_VARIABLE rm_out
|
|
RETURN_VALUE rm_retval
|
|
)
|
|
IF("${rm_retval}" STREQUAL 0)
|
|
ELSE("${rm_retval}" STREQUAL 0)
|
|
MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"")
|
|
ENDIF("${rm_retval}" STREQUAL 0)
|
|
ELSE(EXISTS "${file}")
|
|
MESSAGE(STATUS "File \"${file}\" does not exist.")
|
|
ENDIF(EXISTS "${file}")
|
|
ENDFOREACH(file)
|