From 77125ac34d973608e53b0dd08670dca1fae66227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Wed, 2 Jul 2025 12:22:12 +0200 Subject: [PATCH] Fix conan-create makefile target --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a5c3f14..06f327e 100644 --- a/Makefile +++ b/Makefile @@ -62,8 +62,9 @@ viewcoverage: ## View the html coverage report conan-create: ## Create the conan package @echo ">>> Creating the conan package..." - conan create . --build=missing --pr:b=release -pr:h=release - conan create . --build=missing -pr:b=debug -pr:h=debug + conan create . --build=missing -tf "" -s:a build_type=Release + conan create . --build=missing -tf "" -s:a build_type=Debug -o "&:enable_testing=False" + @echo ">>> Done"