chore: remove trivial macro from CMakeLists
This commit is contained in:
parent
6a992f4c1f
commit
edceac754f
|
@ -198,29 +198,15 @@ if (EXISTS "${CMAKE_SOURCE_DIR}/.git")
|
||||||
endif ()
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
# Helper macros for install settings
|
|
||||||
macro (ppic_convert_to_relative_path _var)
|
|
||||||
# Make sure _var is a relative path
|
|
||||||
if (IS_ABSOLUTE "${${_var}}")
|
|
||||||
file (RELATIVE_PATH ${_var} "${CMAKE_INSTALL_PREFIX}" "${${_var}}")
|
|
||||||
endif ()
|
|
||||||
endmacro ()
|
|
||||||
|
|
||||||
# Install settings
|
# Install settings
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
# FIXME: try to avoid install to a "bin" subfolder under windows...
|
# TODO: try to avoid install to a "bin" subfolder under windows...
|
||||||
# when fixed, don't forget to update the CI config file...
|
# when fixed, don't forget to update the CI config file...
|
||||||
set (BIN_INSTALL_DIR "") # seems useless, don't know why...
|
|
||||||
elseif (UNIX)
|
elseif (UNIX)
|
||||||
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
|
||||||
set(CMAKE_INSTALL_PREFIX /usr)
|
set(CMAKE_INSTALL_PREFIX /usr)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
set (BIN_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}") # relative, usually "bin"
|
|
||||||
ppic_convert_to_relative_path(BIN_INSTALL_DIR)
|
|
||||||
set (LIB_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}") # "lib" or "lib64"
|
|
||||||
ppic_convert_to_relative_path(LIB_INSTALL_DIR)
|
|
||||||
|
|
||||||
# install icon
|
# install icon
|
||||||
install (
|
install (
|
||||||
FILES assets/icons/app-icon.svg
|
FILES assets/icons/app-icon.svg
|
||||||
|
@ -242,9 +228,9 @@ elseif (UNIX)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set (INSTALL_TARGETS_DEFAULT_ARGS
|
set (INSTALL_TARGETS_DEFAULT_ARGS
|
||||||
RUNTIME DESTINATION ${BIN_INSTALL_DIR}
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
LIBRARY DESTINATION ${LIB_INSTALL_DIR}
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||||
ARCHIVE DESTINATION ${LIB_INSTALL_DIR} COMPONENT Devel
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT Devel
|
||||||
)
|
)
|
||||||
|
|
||||||
install (
|
install (
|
||||||
|
|
Loading…
Reference in New Issue
Block a user