-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstdair-config.cmake.in
More file actions
25 lines (21 loc) · 1.09 KB
/
stdair-config.cmake.in
File metadata and controls
25 lines (21 loc) · 1.09 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
@PACKAGE_INIT@
#
# Config file for the StdAir package. It defines the following variables:
# STDAIR_VERSION - version of StdAir
# STDAIR_BINARY_DIRS - binary directories for StdAir
# STDAIR_INCLUDE_DIRS - include directories for StdAir
# STDAIR_LIBRARY_DIRS - library directories for StdAir (normally not used!)
# STDAIR_LIBRARIES - libraries to link against
# STDAIR_EXECUTABLES - the stdair binaries/executables
# STDAIR_SAMPLE_DIR - the stdair (CSV) sample files
# Tell the user project where to find the headers, libraries and sample files
set (STDAIR_VERSION "@PACKAGE_VERSION@")
set (STDAIR_BINARY_DIRS "@PACKAGE_STDAIR_BIN_DIR@")
set (STDAIR_INCLUDE_DIRS "@PACKAGE_STDAIR_INCLUDE_DIRS@")
set (STDAIR_LIBRARY_DIRS "@PACKAGE_STDAIR_LIB_DIR@")
set (STDAIR_SAMPLE_DIR "@PACKAGE_STDAIR_SAMPLE_DIR@")
# Our library dependencies (contains definitions for IMPORTED targets)
include ("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-library-depends.cmake")
# These are IMPORTED targets created by stdair-library-depends.cmake
set (STDAIR_LIBRARIES stdairlib stdairuicllib)
set (STDAIR_EXECUTABLES stdair)