cmake_uninstall - fix always skipped if-block condition

This commit is contained in:
Andrej730
2026-01-26 16:02:30 +05:00
parent c6766cefb7
commit bc675ef9b2
+1 -1
View File
@@ -30,7 +30,7 @@ foreach(file ${files})
if(IS_SYMLINK "${filepath}" OR EXISTS "${filepath}")
file(REMOVE "${filepath}")
else(IS_SYMLINK "${filepath}" OR EXISTS "${filepath}")
else(NOT EXISTS "${filepath}")
message(STATUS "File ${filepath} does not exist.")
endif()
endforeach()