build.zig.zon 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. .{
  2. .name = "sdl_window_test",
  3. // This is a [Semantic Version](https://semver.org/).
  4. // In a future version of Zig it will be used for package deduplication.
  5. .version = "0.0.0",
  6. .fingerprint = 0x9d6f711a37cd1ba7,
  7. // This field is optional.
  8. // This is currently advisory only; Zig does not yet do anything
  9. // with this value.
  10. //.minimum_zig_version = "0.11.0",
  11. // This field is optional.
  12. // Each dependency must either provide a `url` and `hash`, or a `path`.
  13. // `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
  14. // Once all dependencies are fetched, `zig build` no longer requires
  15. // internet connectivity.
  16. .dependencies = .{
  17. .SDL = .{
  18. .url = "https://github.com/pwbh/SDL/archive/refs/tags/release-2.30.3.tar.gz",
  19. .hash ="12203d06a751586e5cf3f8b61f9a0012c70ada050ce33b6bf79d4741902f9c344239",
  20. },
  21. },
  22. .paths = .{
  23. // This makes *all* files, recursively, included in this package. It is generally
  24. // better to explicitly list the files and directories instead, to insure that
  25. // fetching from tarballs, file system paths, and version control all result
  26. // in the same contents hash.
  27. "",
  28. // For example...
  29. //"build.zig",
  30. //"build.zig.zon",
  31. //"src",
  32. //"LICENSE",
  33. //"README.md",
  34. },
  35. }