From 073639c304114a2bb1dcf026e986785d427e3560 Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Wed, 12 Jun 2024 21:11:04 +0200 Subject: [PATCH] Add conan-build and conan-build-debug to Makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 9a4abd9..78d76f7 100644 --- a/Makefile +++ b/Makefile @@ -87,3 +87,12 @@ doc: conan-debug: conan-install-debug conan-create-debug .PHONY: conan-debug + +conan-build: + conan build . -s $(CONAN_SETTINGS) -s build_type=Release + +conan-build-debug: + conan build . -s $(CONAN_SETTINGS) -s build_type=Debug + +clean: + rm -rf build \ No newline at end of file -- GitLab