-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more info in pc template & cmake compatibility (#132)
- Loading branch information
Showing
4 changed files
with
82 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# from https://github.com/OSGeo/PROJ/blob/5920e2998318189970c0fe1e2db60f643515b9ea/cmake/uninstall.cmake.in | ||
|
||
# install_manifest.txt is created in the top build tree, not the project one | ||
if (NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt") | ||
message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_BINARY_DIR@/install_manifest.txt\"") | ||
endif() | ||
|
||
set(uninstall_file_list "@CMAKE_BINARY_DIR@/install_manifest.txt") | ||
if(EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest_extra.txt") | ||
list(APPEND uninstall_file_list "@CMAKE_CURRENT_BINARY_DIR@/install_manifest_extra.txt") | ||
endif() | ||
|
||
set(dir_list) | ||
foreach (manifest_file IN ITEMS ${uninstall_file_list}) | ||
file(READ "${manifest_file}" files) | ||
string(REGEX REPLACE "\n$" "" files "${files}") | ||
string(REGEX REPLACE "\n" ";" files "${files}") | ||
list(REVERSE files) | ||
foreach (file ${files}) | ||
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") | ||
if (IS_DIRECTORY "$ENV{DESTDIR}${file}") | ||
list(APPEND dir_list "${file}") | ||
elseif (EXISTS "$ENV{DESTDIR}${file}") | ||
get_filename_component(dir "${file}" DIRECTORY) | ||
list(APPEND dir_list "${dir}") | ||
execute_process( | ||
COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}" | ||
OUTPUT_VARIABLE rm_out | ||
RESULT_VARIABLE rm_retval | ||
) | ||
if(NOT ${rm_retval} EQUAL 0) | ||
message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") | ||
endif (NOT ${rm_retval} EQUAL 0) | ||
else () | ||
message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") | ||
endif () | ||
endforeach(file) | ||
endforeach() | ||
|
||
while(NOT "${dir_list}" STREQUAL "") | ||
list(REMOVE_DUPLICATES dir_list) | ||
set(new_dir_list) | ||
foreach (file IN ITEMS ${dir_list}) | ||
if (IS_DIRECTORY "$ENV{DESTDIR}${file}" AND "${file}" MATCHES "@CMAKE_INSTALL_PREFIX@[/\\].+") | ||
file(GLOB file_list "$ENV{DESTDIR}${file}/*") | ||
list(LENGTH file_list file_list_len) | ||
# Only remove empty directories | ||
if(file_list_len EQUAL 0) | ||
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") | ||
execute_process( | ||
COMMAND @CMAKE_COMMAND@ -E remove_directory "$ENV{DESTDIR}${file}" | ||
OUTPUT_VARIABLE rm_out | ||
RESULT_VARIABLE rm_retval | ||
) | ||
if(${rm_retval} EQUAL 0) | ||
get_filename_component(upper_dir "${file}" DIRECTORY) | ||
list(APPEND new_dir_list "${upper_dir}") | ||
else() | ||
message(STATUS "Problem when removing directory \"$ENV{DESTDIR}${file}\"") | ||
endif() | ||
endif() | ||
endif() | ||
endforeach() | ||
set(dir_list "${new_dir_list}") | ||
endwhile() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters