summaryrefslogtreecommitdiffstats
path: root/src/utils/sys-utils/CMakeLists.txt
blob: e05b5cf1d05bf5ce9034ba3c3e938111af0694d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cmake_minimum_required(VERSION 3.10)

# set the project name
project(xloop-utils-sys-utils)

# add xlosetup executable
add_executable(xlosetup ${CMAKE_CURRENT_SOURCE_DIR}/xlosetup.c)
target_link_libraries(xlosetup libcommon libsmartcols xloop-version)
install(TARGETS xlosetup DESTINATION bin
        COMPONENT main)

# install xlosetup man page
# NOTE: installation is done via a directory install with file matching pattern to support CPackRPM's automatic compression of man pages
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/
        DESTINATION share/man/man8
        COMPONENT main
        USE_SOURCE_PERMISSIONS
        FILES_MATCHING PATTERN *.8*)