diff options
| -rw-r--r-- | examples/BUILD | 18 |
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 + """ + |
