Compare commits

...

4 Commits

Author SHA1 Message Date
189d314990 Fix Conan debug build
Fix smell issues in markdown and python
2025-07-02 00:44:24 +02:00
28be43db02 Update sample target in Makefile 2025-07-01 18:42:20 +02:00
55a24fbaf0 Update optimization flag 2025-07-01 16:49:04 +02:00
3b170324f4 Merge pull request 'conan' (#38) from conan into main
Reviewed-on: #38
2025-07-01 14:33:50 +00:00

View File

@@ -1,6 +1,6 @@
SHELL := /bin/bash
.DEFAULT_GOAL := help
.PHONY: viewcoverage coverage setup help install uninstall diagrams buildr buildd test clean updatebadge doc doc-install init clean-test conan-debug conan-release conan-create conan-upload conan-clean conan-sample
.PHONY: viewcoverage coverage setup help install uninstall diagrams buildr buildd test clean updatebadge doc doc-install init clean-test debug release conan-create conan-upload conan-clean sample
f_release = build_Release
f_debug = build_Debug
@@ -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)