-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrmol-config.cmake.in
More file actions
27 lines (23 loc) · 1.07 KB
/
rmol-config.cmake.in
File metadata and controls
27 lines (23 loc) · 1.07 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
26
27
@PACKAGE_INIT@
#
# 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 "@PACKAGE_RMOL_BIN_DIR@")
set (RMOL_INCLUDE_DIRS "@PACKAGE_RMOL_INCLUDE_DIRS@")
set (RMOL_LIBRARY_DIRS "@PACKAGE_RMOL_LIB_DIR@")
set (RMOL_LIBEXEC_DIR "@PACKAGE_RMOL_LIBEXEC_DIR@")
# Library dependencies for RMOL (contains definitions for the RMOL IMPORTED
# targets)
include ("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-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)