From e49b1d659b84ce7dbe28421166dd8950b67e9745 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Tue, 17 Jun 2025 11:37:43 +1000 Subject: [PATCH] Binary artifacts are now stored to the ignored bin/ directory --- .gitignore | 1 + {src => lang/demo}/demo.no | 0 noether.nimble | 4 ++-- 3 files changed, 3 insertions(+), 2 deletions(-) rename {src => lang/demo}/demo.no (100%) diff --git a/.gitignore b/.gitignore index c18dd8d..0a37b21 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ __pycache__/ +bin/ diff --git a/src/demo.no b/lang/demo/demo.no similarity index 100% rename from src/demo.no rename to lang/demo/demo.no diff --git a/noether.nimble b/noether.nimble index ad8b6b4..3f4ffdc 100644 --- a/noether.nimble +++ b/noether.nimble @@ -1,14 +1,14 @@ # Package - version = "0.1.0" author = "Emile Clark-Boman" description = "Type theoretic imperative and logic language for mathematical programming" license = "MIT" srcDir = "src" +binDir = "bin" installExt = @["nim"] bin = @["noether", "nlx"] +backend = "c" # Dependencies - requires "nim >= 2.2.0"