-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Conf] Scinded the Python CMake support files
- Loading branch information
Showing
3 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# | ||
# Config file for the RMOL Python package. It defines the following variables: | ||
# RMOL_VERSION - version of RMOL | ||
# RMOL_PY_LIBRARY_DIRS - Python library directories for RMOL | ||
# RMOL_PY_LIBRARIES - Python libraries to link against | ||
# RMOL_PY_EXECUTABLES - Python binaries/executables | ||
# | ||
|
||
# Tell the user project where to find RMOL Python libraries | ||
set (RMOL_VERSION "@PACKAGE_VERSION@") | ||
set (RMOL_PY_LIBRARY_DIRS "@RMOL_PY_LIB_DIR@") | ||
|
||
# Library dependencies for RMOL (contains definitions for the RMOL IMPORTED | ||
# targets) | ||
include ("@RMOL_CMAKE_DIR@/rmol-python-library-depends.cmake") | ||
|
||
# These are the RMOL IMPORTED targets, created by rmol-library-depends.cmake | ||
set (RMOL_PY_LIBRARIES pyrmollib) | ||
set (RMOL_PY_EXECUTABLES pyrmol) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters