From 990fe78a33c0aaa7b6d575d0a885c56e8a8508ee Mon Sep 17 00:00:00 2001 From: Orange Date: Fri, 3 Oct 2025 12:40:18 +0300 Subject: [PATCH] fixed wrong spam of command option into build log --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c29926c..639de28 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -106,7 +106,7 @@ endif () if (OMATH_USE_AVX2) if (MSVC) - target_compile_options(${PROJECT_NAME} PUBLIC /ARCH:AVX2) + target_compile_options(${PROJECT_NAME} PUBLIC /arch:AVX2) elseif (EMSCRIPTEN) target_compile_options(${PROJECT_NAME} PUBLIC -msimd128 -mavx2) elseif (CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang|AppleClang")