From b1d550f21159d67a76e065ac4cdf84cd54272d99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Sat, 19 Jul 2025 20:29:06 +0200 Subject: [PATCH] Fix release build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 41b19c9..4dfa757 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ debug: ## Build Debug version of the library @$(call build_target,"Debug","$(f_debug)", "ENABLE_TESTING=ON", "-o enable_testing=True") release: ## Build Release version of the library - @$(call build_target,"Release","$(f_release)", "ENABLE_TESTING=OFF", "") + @$(call build_target,"Release","$(f_release)", "ENABLE_TESTING=OFF", "-o enable_testing=False") install: ## Install the library @echo ">>> Installing the project..."