Add cache clean to conan-clean

This commit is contained in:
2025-07-04 11:56:55 +02:00
parent c142ff2c4a
commit 3048244a27

View File

@@ -215,6 +215,7 @@ conan-create: ## Create Conan package
conan-clean: ## Clean Conan cache and build folders
@echo ">>> Cleaning Conan cache and build folders..."
@conan remove "*" --confirm
@conan cache clean
@if test -d "$(f_release)" ; then rm -rf "$(f_release)"; fi
@if test -d "$(f_debug)" ; then rm -rf "$(f_debug)"; fi
@echo ">>> Done"
@@ -249,4 +250,4 @@ help: ## Show help message
printf "%-20s %s" $$help_command ; \
printf '\033[0m'; \
printf "%s\n" $$help_info; \
done
done