dub.json 737 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "authors": [
  3. "quantumde1"
  4. ],
  5. "copyright": "Copyright © 2025, quantumde1",
  6. "dependencies": {
  7. "bindbc-lua": "~>0.6.1",
  8. "raylib-d": "~>5.5.1"
  9. },
  10. "description": "Engine on Dlang for visual novels",
  11. "lflags-linux": [
  12. "-rpath=/usr/lib",
  13. "-rpath=$$ORIGIN"
  14. ],
  15. "lflags-osx": [
  16. "-rpath",
  17. "./",
  18. "-rpath",
  19. "/opt/local/lib"
  20. ],
  21. "lflags-posix": [
  22. "-L/usr/lib",
  23. "-L.",
  24. "-L/opt/local/lib",
  25. "-L/usr/local/lib"
  26. ],
  27. "lflags-windows": [
  28. "-L./"
  29. ],
  30. "libs-posix": [
  31. "raylib",
  32. "lua-5.3",
  33. "vlc",
  34. "hpff"
  35. ],
  36. "libs-windows": [
  37. "raylib",
  38. "lua53",
  39. "libhpff",
  40. "vlc"
  41. ],
  42. "license": "MIT License",
  43. "name": "himmel-engine",
  44. "subConfigurations": {
  45. "bindbc-lua": "static"
  46. },
  47. "versions": [
  48. "LUA_53"
  49. ]
  50. }