From b6891480dfb41336a4dfeee95e0c52301e7e6f62 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 15 Dec 2016 08:21:13 -0700 Subject: Wow, I feel dumb. Fixed the always-build-datafiles bug. I had the wrong path for the target, so it could never find the output file and it tried to create it every single time. --- default.bld | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'default.bld') diff --git a/default.bld b/default.bld index 390a58a..92cbdea 100644 --- a/default.bld +++ b/default.bld @@ -7,13 +7,14 @@ target "clic" LDFLAGS += "-ggdb -lbu++"; } -target "datafiles.cpp" +target "src/datafiles.cpp" { - input "parserhelp.txt"; + input ["parserhelp.txt"]; display "bin2cpp"; profile "build" { + condition fileTime; execute("../libbu++/bin2cpp -d src parserhelp.txt"); } } -- cgit v1.2.3