Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rustkas/zig-build-system--0.13.0-examples
Exampels of Zig's tutorial
https://github.com/rustkas/zig-build-system--0.13.0-examples
build zig ziglang
Last synced: 23 days ago
JSON representation
Exampels of Zig's tutorial
- Host: GitHub
- URL: https://github.com/rustkas/zig-build-system--0.13.0-examples
- Owner: rustkas
- Created: 2024-07-11T02:33:08.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T12:26:31.000Z (4 months ago)
- Last Synced: 2024-10-02T07:04:20.472Z (about 1 month ago)
- Topics: build, zig, ziglang
- Language: Zig
- Homepage: https://ziglang.org/learn/build-system/
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Zig Build System
Exampels of Zig's tutorial- Getting Started
- [Simple Executable](projects/pr01)
- [Adding a Convenience Step for Running the Application](projects/pr02)
- The Basics
- [User-Provided Options](projects/pr03)
- [Standard Configuration Options](projects/pr04)
- [Options for Conditional Compilation](projects/pr05)
- [Static Library](projects/pr06)
- [Dynamic Library](projects/pr07)
- [Testing](projects/pr08)
- [Linking to System Libraries](projects/pr09)
- Generating Files
- [Running System Tools](projects/pr10)
- [Running the Project’s Tools](projects/pr11)
- [Producing Assets for @embedFile](projects/pr12)
- [Generating Zig Source Code](projects/pr13)
- [Dealing With One or More Generated Files](projects/pr14)
- [Mutating Source Files in Place](projects/pr15)
- Handy Examples
- [Build for multiple targets to make a release](projects/pr16)