From 4f0f2a456e56d8955dc116c7b78812d398210b80 Mon Sep 17 00:00:00 2001 From: Rohan Budhiraja <proyan@users.noreply.github.com> Date: Mon, 9 Sep 2019 11:44:57 +0200 Subject: [PATCH] [CMake][Multi-threading] turn off the multithreading option --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 786aa938..4d863aec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ ENDIF() SET(CXX_DISABLE_WERROR True) # Create different building options -OPTION(ENABLE_VECTORIZATION "Enable vectorization and futhers processor-related optimizations" OFF) +OPTION(ENABLE_VECTORIZATION "Enable vectorization and futhers processor-related optimizations" ON) OPTION(BUILD_PYTHON_INTERFACE "Build the python binding" ON) OPTION(BUILD_UNIT_TESTS "Build the unitary tests" ON) OPTION(BUILD_BENCHMARK "Build the benchmark" ON) @@ -111,4 +111,4 @@ IF(BUILD_BENCHMARK) ENDIF(BUILD_BENCHMARK) -SETUP_PROJECT_FINALIZE() \ No newline at end of file +SETUP_PROJECT_FINALIZE() -- GitLab