From 23ee04fffe4bdf4b8c34603e4b191d7cc308051b Mon Sep 17 00:00:00 2001 From: lukeflo Date: Fri, 25 Oct 2024 12:48:19 +0200 Subject: Inegrate new command-action driven structure - Map keys to actions to commands - allows for easily adding config file support - restructure folders/files - implement own input mode - rewrite UI rendering to make it better editable --- build.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 build.rs (limited to 'build.rs') diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..ea31c78 --- /dev/null +++ b/build.rs @@ -0,0 +1,7 @@ +// Make target-triple used for build accessable in binary +fn main() { + println!( + "cargo:rustc-env=TARGET={}", + std::env::var("TARGET").unwrap() + ); +} -- cgit v1.2.3