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.
16 lines
343 B
CMake
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 )
|