-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCMakeLists.txt
100 lines (86 loc) · 2.67 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
cmake_minimum_required(VERSION 3.13)
cmake_policy(VERSION 3.13)
project(fty-discovery
VERSION 1.0.0
DESCRIPTION "42ity service for discovering devices"
)
##############################################################################################################
find_package(fty-cmake PATHS ${CMAKE_BINARY_DIR}/fty-cmake)
##############################################################################################################
##############################################################################################################
etn_target(static ${PROJECT_NAME}-static
SOURCES
src/assets.cc
src/assets.h
src/cidr.cc
src/cidr.h
src/device_scan.cc
src/device_scan.h
src/range_scan.cc
src/range_scan.h
src/scan_dns.cc
src/scan_dns.h
src/scan_nut.cc
src/scan_nut.h
src/scan_nm2.cc
src/scan_nm2.h
src/neon.cc
src/neon.h
USES
czmq
cxxtools # cxxtools cannot be use as public because we do not have the cmake package yet
fty_common
fty_common_db
fty_common_logging
fty_common_nut
fty_common_socket
fty_proto
fty_security_wallet
fty-utils
fty-pack
mlm
tntdb
cidr
neon
stdc++fs
pthread
PRIVATE
)
##############################################################################################################
etn_target(exe ${PROJECT_NAME}-server
SOURCES
src/fty_discovery_server.cc
src/fty_discovery_server.h
src/fty_discovery.cc
USES
${PROJECT_NAME}-static
)
##############################################################################################################
#install systemd config
etn_configure_file(
src/fty-discovery.service.in
TARGET ${PROJECT_NAME}-server
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/systemd/system/"
)
#install config file
etn_configure_file(
src/conf/fty-discovery.cfg.in
TARGET ${PROJECT_NAME}-server
DESTINATION "${CMAKE_INSTALL_SYSCONFDIR}/fty-discovery/"
)
##############################################################################################################
etn_test_target(${PROJECT_NAME}-server
SOURCES
test/main.cpp
test/assets.cpp
test/cidr.cpp
test/device-scan.cpp
test/fty-discovery-server.cpp
test/range-scan.cpp
test/scan-dns.cpp
test/scan-nut.cpp
src/fty_discovery_server.cc
PUBLIC_INCLUDE_DIR
src
)
##############################################################################################################