-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeConfig.cmake.in
More file actions
36 lines (28 loc) · 1.01 KB
/
CMakeConfig.cmake.in
File metadata and controls
36 lines (28 loc) · 1.01 KB
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
@PACKAGE_INIT@
# Variable(s) to link all libraries
set(@PROJECT_NAME@_LIBRARIES
@PROJECT_NAME@_client
@PROJECT_NAME@_server
@PROJECT_NAME@_display
@PROJECT_NAME@_aggregator
)
set(@PROJECT_NAME@_LIBS
@PROJECT_NAME@_client
@PROJECT_NAME@_server
@PROJECT_NAME@_display
@PROJECT_NAME@_aggregator
)
# Variable(s) to link selection libraries
set(@PROJECT_NAME@_client_LIB @PROJECT_NAME@_client)
set(@PROJECT_NAME@_server_LIB @PROJECT_NAME@_server)
set(@PROJECT_NAME@_display_LIB @PROJECT_NAME@_display)
set(@PROJECT_NAME@_aggregator_LIB @PROJECT_NAME@_aggregator)
set(@PROJECT_NAME@_client_LIBRARY @PROJECT_NAME@_client)
set(@PROJECT_NAME@_server_LIBRARY @PROJECT_NAME@_server)
set(@PROJECT_NAME@_display_LIBRARY @PROJECT_NAME@_display)
set(@PROJECT_NAME@_aggregator_LIBRARY @PROJECT_NAME@_aggregator)
set(@PROJECT_NAME@_INCLUDE_DIRS
"${PACKAGE_PREFIX_DIR}/include/edi/"
"${PACKAGE_PREFIX_DIR}/include/edi/rtclm/")
set(@PROJECT_NAME@_LIB_DIR
"${PACKAGE_PREFIX_DIR}/lib/edi/")