This commit changes the api for the Schedule class, the various time related methods now return datetime.datetime instances instead of datetime.data.
12 lines
254 B
CMake
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 )
|