-
Notifications
You must be signed in to change notification settings - Fork 5
/
rmol-config.cmake.in
25 lines (22 loc) · 1.01 KB
/
rmol-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
#
# Config file for the RMOL package. It defines the following variables:
# RMOL_VERSION - version of RMOL
# RMOL_BINARY_DIRS - binary directories for RMOL
# RMOL_INCLUDE_DIRS - include directories for RMOL
# RMOL_LIBRARY_DIRS - library directories for RMOL
# RMOL_LIBEXEC_DIR - internal exec directory for RMOL
# RMOL_LIBRARIES - libraries to link against
# RMOL_EXECUTABLES - the RMOL binaries/executables
#
# Tell the user project where to find RMOL headers and libraries
set (RMOL_VERSION "@PACKAGE_VERSION@")
set (RMOL_BINARY_DIRS "@RMOL_BIN_DIR@")
set (RMOL_INCLUDE_DIRS "@RMOL_INCLUDE_DIRS@")
set (RMOL_LIBRARY_DIRS "@RMOL_LIB_DIR@")
set (RMOL_LIBEXEC_DIR "@RMOL_LIBEXEC_DIR@")
# Library dependencies for RMOL (contains definitions for the RMOL IMPORTED
# targets)
include ("@RMOL_CMAKE_DIR@/rmol-library-depends.cmake")
# These are the RMOL IMPORTED targets, created by rmol-library-depends.cmake
set (RMOL_LIBRARIES rmollib)
set (RMOL_EXECUTABLES rmol rmol_extractBPC rmol_drawBPC)