From f98844efaa9abf3cf8cb07fb5b48a07232e1705c Mon Sep 17 00:00:00 2001 From: lordlogo2002 Date: Fri, 3 Apr 2026 15:25:32 +0200 Subject: [PATCH] Add new Nutfile template for project builds --- nut/templates/Nutfile | 0 nut/templates/project/Nutfile | 12 ++++++++++++ 2 files changed, 12 insertions(+) delete mode 100644 nut/templates/Nutfile create mode 100644 nut/templates/project/Nutfile diff --git a/nut/templates/Nutfile b/nut/templates/Nutfile deleted file mode 100644 index e69de29..0000000 diff --git a/nut/templates/project/Nutfile b/nut/templates/project/Nutfile new file mode 100644 index 0000000..95a2a43 --- /dev/null +++ b/nut/templates/project/Nutfile @@ -0,0 +1,12 @@ +build: + # name of the resulting build + # Example Build will become example_build.nut + name: Example Build + + # name of the folder where the build will be outputted + # build procces will create this folder if it doesn't exist + # its used for build process and the final files will be outputted in this folder + buildFolder: build + + # path to the entry point of the project, this is the file that will be executed when the build is run + entry: src/main.nut