dub.json 922 B

123456789101112131415161718192021222324252627
  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. "lflags-linux" : ["-rpath=$$ORIGIN"]
  19. }
  20. ],
  21. "copyright": "Copyright (c) Ramon Santamaria (@raysan5), Petro Romanovych (@onroundit), Jan Hoenig (@m3m0ry), Steven Schveighoffer (@schveiguy), Liam McGillivray (@LiamM32)",
  22. "excludedSourceFiles": ["source/rlgl.d", "source/raymath.d", "source/easings.d", "source/raymathext.d", "source/raylib_types.d"],
  23. "targetType": "library",
  24. "subPackages" : [
  25. "install"
  26. ]
  27. }