Fix debug conan build target

This commit is contained in:
2025-07-02 11:03:41 +02:00
parent 4e5f39f803
commit fa1b063be0
5 changed files with 32 additions and 137 deletions

View File

@@ -1,28 +1,36 @@
SHELL := /bin/bash
.DEFAULT_GOAL := build
.PHONY: build install test
.DEFAULT_GOAL := release
.PHONY: debug release install test conan-create
lcov := lcov
f_debug = build_debug
f_release = build_release
build: ## Build the project for Release
@echo ">>> Building the project for Release..."
@if [ -d $(f_release) ]; then rm -fr $(f_release); fi
@conan install . --build=missing -of $(f_release) -s build_type=Release --profile:build=default --profile:host=default
cmake -S . -B $(f_release) -DCMAKE_TOOLCHAIN_FILE=$(f_release)/build/Release/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTING=OFF -DENABLE_SAMPLE=OFF
@cmake --build $(f_release) -j 8
define build_target
@echo ">>> Building the project for $(1)..."
@if [ -d $(2) ]; then rm -fr $(2); fi
@conan install . --build=missing -of $(2) -s build_type=$(1)
@cmake -S . -B $(2) -DCMAKE_TOOLCHAIN_FILE=$(2)/build/$(1)/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=$(1) -D$(3)
@cmake --build $(2) --config $(1) -j 8
endef
debug: ## Build Debug version of the library
@$(call build_target,"Debug","$(f_debug)", "ENABLE_TESTING=ON")
release: ## Build Release version of the library
@$(call build_target,"Release","$(f_release)", "ENABLE_TESTING=OFF")
install: ## Install the project
@echo ">>> Installing the project..."
@cmake --build build_release --target install -j 8
@cmake --build $(f_release) --target install -j 8
test: ## Build Debug version and run tests
@echo ">>> Building Debug version and running tests..."
@if [ -d $(f_debug) ]; then rm -fr $(f_debug); fi
@conan install . --build=missing -of $(f_debug) -s build_type=Debug
@cmake -B $(f_debug) -S . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=$(f_debug)/build/Debug/generators/conan_toolchain.cmake -DENABLE_TESTING=ON -DENABLE_SAMPLE=ON
@cmake --build $(f_debug) -j 8
@if [ ! -d $(f_debug) ]; then \
$(MAKE) debug; \
else \
echo ">>> Debug build already exists, skipping build."; \
fi
@cp -r tests/datasets $(f_debug)/tests/datasets
@cd $(f_debug)/tests && ctest --output-on-failure -j 8
@cd $(f_debug)/tests && $(lcov) --capture --directory ../ --demangle-cpp --ignore-errors source,source --ignore-errors mismatch --output-file coverage.info >/dev/null 2>&1; \
@@ -44,7 +52,7 @@ test: ## Build Debug version and run tests
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 -pr:b=debug -pr:h=debug