-
Notifications
You must be signed in to change notification settings - Fork 2
/
frilConfig.cmake.in
35 lines (29 loc) · 1.2 KB
/
frilConfig.cmake.in
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
# - Config file for the Fril package
# It defines the following variables
# FRIL_INCLUDE_DIRS - include directories for FastRearchInterfaceLibary
# FRIL_LIBRARIES - libraries to link against FastRearchInterfaceLibary
# FRIL_LIBRARIES_STATIC - static version of the library
# FRIL_DEFINITIONS - definitions to use with the FRIL lib
#
# Realtime part
#
# FRIL_RT_FOUND - Flag to determine if fril has realtime version
# FRIL_LIBRARIES_RT - libraries to link against RT version
# FRIL_LIBRARIES_RT_STATIC - static RT version of the library
# FRIL_DEFINITIONS_RT - definitions to use with the FRIL_RT lib
# FRIL_RT_LDFLAGS - ldflags to use when link against FRIL_RT
@PACKAGE_INIT@
SET_AND_CHECK(FRIL_INCLUDE_DIR @PACKAGE_FRIL_DIRNAME_include@ )
IF(NOT TARGET fril)
INCLUDE(${CMAKE_CURRENT_LIST_DIR}/FRILExports.cmake)
ENDIF()
SET(FRIL_INCLUDE_DIRS ${FRIL_INCLUDE_DIR} )
SET(FRIL_LIBRARIES fril_dynamic)
SET(FRIL_LIBRARIES_STATIC fril_static)
SET(FRIL_DEFINITIONS @FRIL_DEFS@ )
# Realtime
SET(FRIL_RT_FOUND @FRIL_RT@)
SET(FRIL_LIBRARIES_RT fril_dynamic_rt )
SET(FRIL_LIBRARIES_RT_STATIC fril_static_rt )
SET(FRIL_RT_LDFLAGS @Xenomai_POSIX_LDFLAGS@ )
SET(FRIL_DEFINITIONS_RT "@FRIL_RT_DEFS@ @FRIL_DEFS@" )