dub.json 787 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. "-build-id=none"
  15. ],
  16. "lflags-osx": [
  17. "-rpath",
  18. "./",
  19. "-rpath",
  20. "/opt/local/lib",
  21. "-build-id=none"
  22. ],
  23. "lflags-posix": [
  24. "-L/usr/lib",
  25. "-L.",
  26. "-L/opt/local/lib",
  27. "-L/usr/local/lib",
  28. "-build-id=none"
  29. ],
  30. "lflags-windows": [
  31. "-L./",
  32. "/Brepro"
  33. ],
  34. "libs-posix": [
  35. "raylib",
  36. "lua-5.3",
  37. "vlc"
  38. ],
  39. "libs-windows": [
  40. "raylib",
  41. "lua53",
  42. "vlc"
  43. ],
  44. "license": "MIT License",
  45. "name": "himmel-engine",
  46. "subConfigurations": {
  47. "bindbc-lua": "static"
  48. },
  49. "versions": [
  50. "LUA_53"
  51. ]
  52. }