summaryrefslogtreecommitdiffhomepage
path: root/examples/build.zig
AgeCommit message (Collapse)Author
2022-08-08Updated to work with zig master branch (#2620)Jacob Dennis
Specifically, std.fs.OpenDirOptions struct no longer has the iterable flag, now it's a standalone function call std.fs.openIterableDir
2022-06-06WARNING: REMOVED `raygui` from `raylib/src/extras`Ray
2021-11-27Add macos support to zig build system (#2175)Anders Holmberg
2021-10-14Add zig buildfile for examples. (#2051)Ryan Roden-Corrent
* Add zig buildfile for examples. - `zig build` to compile all examples - `zig build [module]` to compile all examples for a module (e.g. `zig build core`) - `zig build [example]` to compile _and run_ a particular example (e.g. `zig build core_basic_window`) You can use `-Dtarget=` to compile for a non-native platform, such as `zig build -Dtarget=x86_64-windows-gnu` to compile from Linux to Windows. * Skip pthread example on Windows. * Select appropriate lib file based on target.