Files
opm-common/python/CMakeLists.txt
Joakim Hove 67b30fe715 Use pybind11 as binding framework
This commit changes the api for the Schedule class, the various time related
methods now return datetime.datetime instances instead of datetime.data.
2018-02-08 18:53:15 +01:00

12 lines
254 B
CMake

include( FindPythonModule )
include( PythonPackage )
python_module( inspect OPTIONAL )
if (DEFINED PY_inspect)
message(STATUS "We have inspect.")
else()
message(STATUS "We do not have inspect, ignoring ...")
endif()
add_subdirectory( sunbeam )