-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimfqt-config.cmake.in
More file actions
24 lines (20 loc) · 1.01 KB
/
simfqt-config.cmake.in
File metadata and controls
24 lines (20 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
@PACKAGE_INIT@
#
# Config file for the SimFQT package. It defines the following variables:
# SIMFQT_VERSION - version of SimFQT
# SIMFQT_BINARY_DIRS - binary directories for SimFQT
# SIMFQT_INCLUDE_DIRS - include directories for SimFQT
# SIMFQT_LIBRARY_DIRS - library directories for SimFQT (normally not used!)
# SIMFQT_LIBRARIES - libraries to link against
# SIMFQT_EXECUTABLES - the SimFQT binaries/executables
# Tell the user project where to find SimFQT headers and libraries
set (SIMFQT_VERSION "@PACKAGE_VERSION@")
set (SIMFQT_BINARY_DIRS "@PACKAGE_SIMFQT_BIN_DIR@")
set (SIMFQT_INCLUDE_DIRS "@PACKAGE_SIMFQT_INCLUDE_DIRS@")
set (SIMFQT_LIBRARY_DIRS "@PACKAGE_SIMFQT_LIB_DIR@")
# Library dependencies for SimFQT (contains definitions for the SimFQT IMPORTED
# targets)
include ("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-library-depends.cmake")
# These are the SimFQT IMPORTED targets, created by simfqt-library-depends.cmake
set (SIMFQT_LIBRARIES simfqtlib)
set (SIMFQT_EXECUTABLES simfqt simfqt_parseFareRules)