summaryrefslogtreecommitdiffstats
path: root/conf/CMakeLists.txt
blob: 1b888e68d2c0ec20018feb9bd6bab26cb37efed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmake_minimum_required(VERSION 3.10)

# set the project name
project(dnbd3-conf)

# define all configuration files
set(DNBD3_CONF_FILES ${CMAKE_CURRENT_SOURCE_DIR}/alt-servers
                     ${CMAKE_CURRENT_SOURCE_DIR}/rpc.acl
                     ${CMAKE_CURRENT_SOURCE_DIR}/server.conf)

# install configuration files into sample directory
install(FILES ${DNBD3_CONF_FILES} DESTINATION /etc/dnbd3-server/sample
        COMPONENT server)