summaryrefslogtreecommitdiffstats
path: root/src/utils/sys-utils/CMakeLists.txt
blob: 01295d93a8a6f282919aec2b809e2512d078ad67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 LINK_PUBLIC libcommon libsmartcols)
target_include_directories(xlosetup PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../lib ${CMAKE_CURRENT_SOURCE_DIR}/../libsmartcols)
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*)