From c9606e5283bddb7ff3cac49503146f87f68120f6 Mon Sep 17 00:00:00 2001 From: Greg Landrum Date: Fri, 22 Jan 2016 03:35:22 -0500 Subject: [PATCH] fix logic error in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76a3df581..3cf3f2c63 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,8 +35,8 @@ option(RDK_USE_FLEXBISON "use flex/bison, if available, to build the SMILES/SMAR option(RDK_TEST_COVERAGE "Use G(L)COV to compute test coverage" OFF) option(RDK_USE_BOOST_SERIALIZATION "Use the boost serialization library if available" ON) +option(RDK_OPTIMIZE_NATIVE "Use native features while compiling." ON) if(NOT MSVC) - option(RDK_OPTIMIZE_NATIVE "Use native features while compiling." ON) if(RDK_OPTIMIZE_NATIVE) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mpopcnt") endif()