From ebdc1e50ae17acd9de554b619c3886095a493922 Mon Sep 17 00:00:00 2001 From: Sara Gerretsen Date: Thu, 4 Sep 2025 10:52:19 +0200 Subject: [PATCH] fix: justfile set-project-name now clears build and bin directories --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 3cea3b6..e2eb6f8 100644 --- a/justfile +++ b/justfile @@ -2,6 +2,7 @@ set-project-name projectname: sed -i "s/CHANGEME/{{projectname}}/g" ./CMakeLists.txt ./src/CMakeLists.txt ./justfile .kdev4/* mv ./src/CHANGEME.cpp ./src/{{projectname}}.cpp sed -i "s/CHANGEME.cpp/{{projectname}}.cpp/g" ./justfile + rm -rf build bin generate: cmake -S. -Bbuild