GM2Calc 2.3.0
Loading...
Searching...
No Matches
gm2_python_interface.py.in
Go to the documentation of this file.
1import os
2import cppyy
3
4gm2calcpath = "@PROJECT_SOURCE_DIR@"
5
6# Add gm2calc headers to path
7includepath = os.path.join(gm2calcpath,"include")
8cppyy.add_include_path(includepath)
9
10# Add Eigen3/Core directory to path
11eigen3path = "@EIGEN3_INCLUDE_DIR@"
12cppyy.add_include_path(eigen3path)
13
14# Load library containing gm2calc definitions
15librarypath = "@CMAKE_LIBRARY_OUTPUT_DIRECTORY@"
16cppyy.add_library_path(librarypath)
17