Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[examples] automatically rebuild raylib #4854

Closed

Conversation

marler8997
Copy link
Contributor

@marler8997 marler8997 commented Mar 25, 2025

Hooked up raylib as a library in the examples build so that if a change is made in raylib then running zig build in the examples directory will automatically rebuild raylib.

The main pieces to this are the build.zig.zon file which allows the examples build to see the parent raylib directory. Then we can add raylib as a typical dependency (like any other external raylib-based application would) and grab the "raylib" artifact to link to. We also no longer need to add include paths since raylib's build.zig installs whatever headers are needed.

Hooked up raylib as a library in the examples build so that if a change
is made in raylib then running `zig build` in the examples directory
will automatically rebuild raylib.

The main pieces to this are the build.zig.zon file which allows the
examples build to see the parent raylib directory.  Then we can add
raylib as a typical dependency and grab the "raylib" artifact to link
to. We also no longer need to add include paths since raylib's build.zig
installs them for us.
@@ -0,0 +1,10 @@
.{
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer to avoid keep ading build files, can this .zon file be omited somehow?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The way I would describe it is build.zig.zon is the a way to glue/connect distinct packages together. Since we have two separate build.zig files we essentially have two separate packages so the .zon file is how we "connect them" in a way that we can share build objects between them (i.e. get access to the raylib artifact from the examples build).

The other way to solve this would be to remove the second build.zig file in the examples directory and treat the repo as a single "package". This is a better solution IMO and I'm happy to do that if you prefer.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The other way to solve this would be to remove the second build.zig file in the examples directory and treat the repo as a single "package". This is a better solution IMO and I'm happy to do that if you prefer.

@marler8997 If using a single-package approach, could it include separate build targets (like a Makefile) or building+artifacts will always include the "full-package"? If that's possible, I prefer to keep a single-build package.

Copy link
Contributor Author

@marler8997 marler8997 Mar 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I've created #4856 which incorporates the builds into one. Running zig build will still only build/install the raylib library, but now running zig build examples will build/install all the examples. Also the original examples "steps" to run each individual example still work.

@marler8997
Copy link
Contributor Author

Closing this one in favor of #4856

@marler8997 marler8997 closed this Mar 25, 2025
@marler8997 marler8997 deleted the exampleRaylibDependency branch March 25, 2025 16:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants