From 8e346d77170a7f45b39a9bbb43f4fdda63f1a816 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 18 Jun 2019 11:25:30 +1000 Subject: [PATCH] build: correct the SIMD option test --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 962cea32..dc0d4450 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -510,7 +510,7 @@ list ( option (SIMD "enable simd support" OFF) -if (SIM) +if (SIMD) list (APPEND UTIL_FILES "coord/simd.cpp" "coord/simd.hpp"