Advertisement
Guest User

Untitled

a guest
Dec 29th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. name "vulkantriangled"
  2. description "A minimal D application."
  3. copyright "Copyright © 2016, maik"
  4. authors "maik swoorup"
  5.  
  6. dependency "derelict-sdl2" version="~>2.0.0"
  7. dependency "erupted" version="~>1.4.9"
  8.  
  9. // windows
  10. versions "VK_USE_PLATFORM_WIN32_KHR" platform="windows-x86_64"
  11. subConfiguration "erupted" "with-derelict-loader" platform="windows-x86_64"
  12.  
  13. // linux
  14. subConfiguration "erupted" "dub-platform-xlib-derelict-loader" platform="linux-x86_64"
  15. libs "Xi" "pthread" "X11" "Xxf86vm" "Xrandr" "pthread" "GL" "GLU" "Xinerama" "Xcursor" platform="linux-x86_64"
  16.  
  17. targetType "executable"
  18. targetPath "./bin"
  19.  
  20. configuration "desktop-app" {
  21.   buildType "debug"
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement