summaryrefslogtreecommitdiff
path: root/examples/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'examples/BUILD')
-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
+ """
+