dub.json 810 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. "hpff"
  39. ],
  40. "libs-windows": [
  41. "raylib",
  42. "lua53",
  43. "libhpff",
  44. "vlc"
  45. ],
  46. "license": "MIT License",
  47. "name": "himmel-engine",
  48. "subConfigurations": {
  49. "bindbc-lua": "static"
  50. },
  51. "versions": [
  52. "LUA_53"
  53. ]
  54. }