-
Notifications
You must be signed in to change notification settings - Fork 6
/
CMakeLists.txt
68 lines (59 loc) · 1.8 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
cmake_minimum_required(VERSION 3.13)
########################################################################################################################
project(fty-asset-rest
VERSION 1.0.0
DESCRIPTION "Fty asset library for tntnet"
)
########################################################################################################################
find_package(fty-cmake PATHS ${CMAKE_BINARY_DIR}/fty-cmake)
########################################################################################################################
etn_target(shared ${PROJECT_NAME}
SOURCES
conf/43_assets.xml.in
src/read.cpp
src/read.h
src/create.cpp
src/create.h
src/list.cpp
src/list.h
src/list-in.cpp
src/list-in.h
src/delete.cpp
src/delete.h
src/import.cpp
src/import.h
src/export.cpp
src/export.h
src/edit.cpp
src/edit.h
src/actions-get.cpp
src/actions-get.h
src/actions-post.cpp
src/actions-post.h
src/check-usize.cpp
src/check-usize.h
USES
fty-cmake-rest
cxxtools
tntnet
tntdb
fty_common_rest
fty_shm
fty-pack
fty-asset
fty-asset-libng
fty_proto
fty_common_messagebus
fty_common
fty_common_dto
fty-pack
TARGET_DESTINATION /usr/lib/bios
)
########################################################################################################################
# mappings for tntnet
etn_configure_file(
conf/53_assets.xml.in
TARGET ${PROJECT_NAME}
DESTINATION /etc/tntnet/bios.d
)
########################################################################################################################