dub.json 845 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "raylib-d",
  3. "description": "D binding for Raylib",
  4. "license": "Zlib",
  5. "authors": [
  6. "ONROUNDIT"
  7. ],
  8. "configurations" : [
  9. {
  10. "name": "library"
  11. },
  12. {
  13. "name": "unittest",
  14. "versions" : ["raylib_test"],
  15. "libs" : ["raylib"],
  16. "lflags-posix": ["-L."],
  17. "lflags-osx": ["-rpath", "@executable_path/"]
  18. }
  19. ],
  20. "copyright": "Copyright (c) Ramon Santamaria (@raysan5), Petro Romanovych (@onroundit), Jan Hoenig (@m3m0ry), Steven Schveighoffer (@schveiguy)",
  21. "excludedSourceFiles": ["source/rlgl.d", "source/raymath.d", "source/easings.d", "source/raymathext.d", "source/raylib_types.d"],
  22. "targetType": "sourceLibrary",
  23. "subPackages" : [
  24. "install"
  25. ]
  26. }