From ae651a4fcd7563c6b00b0812bd17bf0777615789 Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Sun, 6 Oct 2019 00:46:30 -0700 Subject: [PATCH] Move cpptoml.h to external directory --- {src/tools/makerd => external/cpptoml}/cpptoml.h | 0 scripts/templates/exe.makerd.j2 | 10 ++++++++++ 2 files changed, 10 insertions(+) rename {src/tools/makerd => external/cpptoml}/cpptoml.h (100%) create mode 100644 scripts/templates/exe.makerd.j2 diff --git a/src/tools/makerd/cpptoml.h b/external/cpptoml/cpptoml.h similarity index 100% rename from src/tools/makerd/cpptoml.h rename to external/cpptoml/cpptoml.h diff --git a/scripts/templates/exe.makerd.j2 b/scripts/templates/exe.makerd.j2 new file mode 100644 index 0000000..1a8e4ba --- /dev/null +++ b/scripts/templates/exe.makerd.j2 @@ -0,0 +1,10 @@ +{% extends "exe.default.j2" %} +{% block variables %} +{{ super() }} + +ccflags = $ccflags -I${srcroot}/external/cpptoml + +{% endblock %} + +# vim: ft=ninja et ts=4 sts=4 sw=4 +