From 12107671e87a7afb67e6d7d237957e47966cca59 Mon Sep 17 00:00:00 2001 From: afonso Date: Sun, 25 Feb 2024 13:18:33 +0000 Subject: [PATCH] Added example file --- examples/compile_and_run_gcc.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/compile_and_run_gcc.toml b/examples/compile_and_run_gcc.toml index 1c8e472..a569552 100644 --- a/examples/compile_and_run_gcc.toml +++ b/examples/compile_and_run_gcc.toml @@ -2,6 +2,7 @@ cc = "gcc" [targets.build] +vars.cc = "gcc" cmd = "${cc} main.c -o main" [targets.run]