diff options
| author | namilsk <alive6863@gmail.com> | 2025-11-29 14:14:49 +0100 |
|---|---|---|
| committer | namilsk <alive6863@gmail.com> | 2025-11-29 14:14:49 +0100 |
| commit | 51ea33519305025daa51ef67c4cb83b8da5542f3 (patch) | |
| tree | b5dc83df1f77cadfd3723e4947ad682a35d048d8 /examples/BUILD | |
| parent | f3d98b21d0b66952501aed5403df6773716f9e0b (diff) | |
Added example BUILD file
Diffstat (limited to 'examples/BUILD')
| -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 + """ + |
