summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornamilsk <alive6863@gmail.com>2025-11-29 14:14:49 +0100
committernamilsk <alive6863@gmail.com>2025-11-29 14:14:49 +0100
commit51ea33519305025daa51ef67c4cb83b8da5542f3 (patch)
treeb5dc83df1f77cadfd3723e4947ad682a35d048d8
parentf3d98b21d0b66952501aed5403df6773716f9e0b (diff)
Added example BUILD file
-rw-r--r--examples/BUILD18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/BUILD b/examples/BUILD
index e69de29..f7fb183 100644
--- a/examples/BUILD
+++ b/examples/BUILD
@@ -0,0 +1,18 @@
+build_system = "CMake" # For example, supported build systems:
+# Enumerate from src/pkgtoolkit
+# pub enum BuildSystems {
+# Make,
+# CMake,
+# Meson,
+# Cargo
+# }
+
+# Environment variables, can be empty or removed
+env = """
+ export SHELL=/usr/bin/zsh
+ """
+# Custom script like from INSTALL
+script = """
+ make -j6 -f build/Makefile all
+ """
+