From 72c2cf7c1b1a1b19d29e361d6fc21d1cb4e9d455 Mon Sep 17 00:00:00 2001 From: Minh Bui Date: Tue, 22 Oct 2019 11:28:59 +1100 Subject: [PATCH] Fix compile issue with Win 32-bit and add SSE3 to main --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b01a11f..44eabd47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -602,7 +602,7 @@ endif() if (NOT IQTREE_FLAGS MATCHES "avx" AND NOT IQTREE_FLAGS MATCHES "fma") if (NOT IQTREE_FLAGS MATCHES "nosse") - set_target_properties(iqtree ncl nclextra utils pda lbfgsb whtest sprng vectorclass model gsl alignment tree yaml-cpp phyloYAML PROPERTIES COMPILE_FLAGS "${SSE_FLAGS}") + set_target_properties(iqtree ncl nclextra utils pda lbfgsb whtest sprng vectorclass model gsl alignment tree yaml-cpp phyloYAML main PROPERTIES COMPILE_FLAGS "${SSE_FLAGS}") if (USE_TERRAPHAST) set_target_properties(terrace terraphast PROPERTIES COMPILE_FLAGS "${SSE_FLAGS}") endif()