From c0cbeb609d2f05e4bf00b087bb578279fefe53c3 Mon Sep 17 00:00:00 2001 From: Ronald Caesar Date: Sun, 7 Dec 2025 15:49:08 -0400 Subject: [PATCH] build: Disable cpu feature detection option This will not be implemented any time soon so this might mislead developers new to the project. Signed-off-by: Ronald Caesar --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b76c58f..412f53e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,8 @@ endif() project(Ballistic LANGUAGES C VERSION 0.1.0) -option(BALLISTIC_ENABLE_CPU_FEATURE_DETECTION "Makes Ballistic able to detect CPU features of the host" ON) + +# option(BALLISTIC_ENABLE_CPU_FEATURE_DETECTION "Makes Ballistic able to detect CPU features of the host" ON) option(BALLISTIC_ENABLE_LINK_TIME_OPTIMIZATION "Enables LTO for Ballistic (improves performance)" ON) option(BALLISTIC_ENABLE_BUILD_TESTS "Enables Ballistic tests" OFF)