added option ENABLE_PYTHON.

This commit is contained in:
Steinar Foss 2019-06-14 13:20:51 +02:00
parent 51bd7a197d
commit d45731a205

View File

@ -8,6 +8,7 @@ set(OPM_MACROS_ROOT ${PROJECT_SOURCE_DIR})
option(ENABLE_ECL_INPUT "Enable eclipse input support?" ON)
option(ENABLE_ECL_OUTPUT "Enable eclipse output support?" ON)
option(ENABLE_MOCKSIM "Build the mock simulator for io testing" ON)
option(ENABLE_PYTHON "Enable python bindings?" ON)
# Output implies input
if(ENABLE_ECL_OUTPUT)
@ -208,3 +209,8 @@ install(DIRECTORY cmake DESTINATION share/opm)
# Install tab completion skeleton
install(FILES etc/opm_bash_completion.sh.in DESTINATION share/opm/etc)
if (ENABLE_PYTHON)
endif()