diff --git a/CMakeLists.txt b/CMakeLists.txt index 590038d..e4570e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,14 +2,12 @@ cmake_minimum_required(VERSION 3.20 FATAL_ERROR) project( ViennaCore LANGUAGES CXX - VERSION 0.0.1) + VERSION 1.0.0) # -------------------------------------------------------------------------------------------------------- # Library Options # -------------------------------------------------------------------------------------------------------- -option(VIENNACORE_BUILD_PYTHON "Build python bindings" OFF) - option(VIENNACORE_BUILD_TESTS "Build tests" OFF) set(VIENNACORE_FORMAT_EXCLUDE @@ -76,16 +74,6 @@ if(VIENNACORE_BUILD_TESTS) add_subdirectory(tests) endif() -# -------------------------------------------------------------------------------------------------------- -# Setup Python Bindings -# -------------------------------------------------------------------------------------------------------- - -if(VIENNACORE_BUILD_PYTHON) - message(STATUS "[ViennaCore] Building Python Bindings") - add_subdirectory(python) - return() -endif() - # -------------------------------------------------------------------------------------------------------- # Install Target # --------------------------------------------------------------------------------------------------------