diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2018-08-14 16:06:26 +0100 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-08-14 16:06:26 +0100 |
commit | a02acdfb1aefa9cfe49ac844707d32d8140f94f0 (patch) | |
tree | 97cb61463af32322c7cea0b259ef6cdf9298a4e3 | |
parent | 35d0d326c7c5a294dfc847a8c4015e86ebe1b84b (diff) | |
download | regularization-a02acdfb1aefa9cfe49ac844707d32d8140f94f0.tar.gz regularization-a02acdfb1aefa9cfe49ac844707d32d8140f94f0.tar.bz2 regularization-a02acdfb1aefa9cfe49ac844707d32d8140f94f0.tar.xz regularization-a02acdfb1aefa9cfe49ac844707d32d8140f94f0.zip |
removed S from BUILD_PYTHON_WRAPPERS
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | Wrappers/CMakeLists.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d9a0f5a..a783664 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,8 +30,8 @@ set (CIL_VERSION '${CIL_VERSION_MAJOR}.${CIL_VERSION_MINOR}.${CIL_VERSION_PATCH} # set the Python variables for the Conda environment #include(${CMAKE_SOURCE_DIR}/CMake/FindAnacondaEnvironment.cmake) -option (BUILD_MATLAB_WRAPPERS "Build Matlab Wrappers" OFF) -option (BUILD_PYTHON_WRAPPERS "Build Python Wrappers" OFF) +option (BUILD_MATLAB_WRAPPER "Build Matlab Wrappers" OFF) +option (BUILD_PYTHON_WRAPPER "Build Python Wrappers" ON) option (CONDA_BUILD "Conda Build" OFF) option (BUILD_CUDA "Build the CUDA modules" ON) diff --git a/Wrappers/CMakeLists.txt b/Wrappers/CMakeLists.txt index 8d02df6..bdcb8f4 100644 --- a/Wrappers/CMakeLists.txt +++ b/Wrappers/CMakeLists.txt @@ -11,9 +11,9 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -if (BUILD_MATLAB_WRAPPERS) +if (BUILD_MATLAB_WRAPPER) add_subdirectory(Matlab) endif() -if (BUILD_PYTHON_WRAPPERS) +if (BUILD_PYTHON_WRAPPER) add_subdirectory(Python) endif()
\ No newline at end of file |