1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 14:53:12 +02:00

Fix cmake deprecation warning CMP0026.

This commit is contained in:
Sadie Powell
2021-11-30 09:59:40 +00:00
parent 595bc09ec1
commit b9ccd4bb0b
4 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ if(GETTEXT_FOUND)
endif()
# Get the filename of the Anope executable as it is in on this system
get_target_property(SERVICES_BINARY ${PROGRAM_NAME} LOCATION)
set(SERVICES_BINARY "$<TARGET_FILE:${PROGRAM_NAME}>")
get_filename_component(SERVICES_BINARY ${SERVICES_BINARY} NAME)
# Add the Anope executable to the list of files for CPack to ignore
add_to_cpack_ignored_files("${SERVICES_BINARY}$" TRUE)
+1 -1
View File
@@ -29,7 +29,7 @@ foreach(SRC ${TOOLS_SRCS})
DESTINATION ${BIN_DIR}
)
# Add the executable to the list of files for CPack to ignore
get_target_property(EXE_BINARY ${EXE} LOCATION)
set(EXE_BINARY "$<TARGET_FILE:${EXE}>")
get_filename_component(EXE_BINARY ${EXE_BINARY} NAME)
add_to_cpack_ignored_files("${EXE_BINARY}$" TRUE)
endif()