Update optimization flag

This commit is contained in:
2025-07-01 16:49:04 +02:00
parent 3b170324f4
commit 55a24fbaf0
2 changed files with 3 additions and 5 deletions

View File

@@ -196,8 +196,7 @@ debug: ## Build debug version using Conan
@conan install . \
-s build_type=Debug \
--build=missing \
-of $(f_debug) \
--profile=debug
-of $(f_debug)
@cmake -S . -B $(f_debug) \
-DCMAKE_BUILD_TYPE=Debug \
-DENABLE_TESTING=ON \
@@ -210,8 +209,7 @@ release: ## Build release version using Conan
@conan install . \
-s build_type=Release \
--build=missing \
-of $(f_debug) \
--profile=release
-of $(f_debug)
@if [ -d ./$(f_release) ]; then rm -rf ./$(f_release); fi
@mkdir $(f_release)
@conan install . -s build_type=Release --build=missing -of $(f_release)