-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
opentrep-config.cmake.in
29 lines (25 loc) · 1.21 KB
/
opentrep-config.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
#
# Config file for the OpenTREP package. It defines the following variables:
# OPENTREP_VERSION - version of OpenTREP
# OPENTREP_BINARY_DIRS - binary directories for OpenTrep
# OPENTREP_INCLUDE_DIRS - include directories for OpenTrep
# OPENTREP_LIBRARY_DIRS - library directories for OpenTrep
# OPENTREP_LIBEXEC_DIR - internal exec directory for OpenTrep
# OPENTREP_LIBRARIES - libraries to link against
# OPENTREP_EXECUTABLES - binaries/executables
# OPENTREP_SAMPLE_DIR - directory for sample data files
#
# Tell the user project where to find OpenTREP headers and libraries
set (OPENTREP_VERSION "@PACKAGE_VERSION@")
set (OPENTREP_BINARY_DIRS "@OPENTREP_BIN_DIR@")
set (OPENTREP_INCLUDE_DIRS "@OPENTREP_INCLUDE_DIRS@")
set (OPENTREP_LIBRARY_DIRS "@OPENTREP_LIB_DIR@")
set (OPENTREP_LIBEXEC_DIR "@OPENTREP_LIBEXEC_DIR@")
set (OPENTREP_SAMPLE_DIR "@OPENTREP_SAMPLE_DIR@")
# Library dependencies for OpenTrep (contains definitions for the OpenTREP
# IMPORTED targets)
include ("@OPENTREP_CMAKE_DIR@/opentrep-library-depends.cmake")
# These are the OpenTREP IMPORTED targets, created by
# opentrep-library-depends.cmake
set (OPENTREP_LIBRARIES opentreplib)
set (OPENTREP_EXECUTABLES opentrep)