Skip to content
Snippets Groups Projects
Commit 5c082080 authored by Robert K's avatar Robert K
Browse files

[feature][DUNE_ENABLE_PYTHONBINDINGS] Added cmake option for enabling

Python bindings, default is OFF.
parent 0a28851b
No related branches found
No related tags found
1 merge request!140Feature/add python bindings
Pipeline #25822 passed
......@@ -23,8 +23,12 @@ dune_project()
add_subdirectory("dune")
add_subdirectory("doc")
add_subdirectory("lib")
add_subdirectory("python")
dune_python_install_package(PATH python)
# if Python bindings are enabled, include necessary sub directories.
if( DUNE_ENABLE_PYTHONBINDINGS )
add_subdirectory("python")
dune_python_install_package(PATH python)
endif()
# finalize the dune project, e.g. generating config.h etc.
finalize_dune_project(GENERATE_CONFIG_H_CMAKE)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment