Files
opm-common/python/CMakeLists.txt
Jørgen Kvalsvik c156eea300 Module for python cmake files; test template
Adds the pycmake makefile dependency and provides a submodule for build
convenience. Adds the SPE3CASE1 test case for some simple test writing
and a test template file.

Sets up python library structure.
2016-12-01 15:52:09 +01:00

16 lines
343 B
CMake

include( FindPythonModule )
include( PythonPackage )
#python_module( ctypes )
python_module( six )
#python_module( numpy REQUIRED 1.7 )
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 )