Skip to content

Commit

Permalink
Fixed Bug using tag dependencies instead of tag dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
ParticlePeter committed Jul 20, 2016
1 parent 2f137ab commit f55df6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name "erupted"
description "Auto-generated D bindings for Vulkan"
copyright "Copyright 2015-2016 The Khronos Group Inc.; Copyright 2016 Alex Parrill Peter Particle"
authors "Alex Parrill" "Peter Particle"
targetType "library"
targetType "sourceLibrary"
license "BSD 2-clause"

// load vulkan vkGetInstanceProcAddr manually os specific or with glfw or similar
Expand All @@ -29,7 +29,7 @@ configuration "dub-platform-xcb" {
// enable wayland specific functionality
configuration "dub-platform-wayland" {
versions "VK_USE_PLATFORM_WAYLAND_KHR"
dependencies "wayland-client-d" version = "~>1.8.90"
dependency "wayland-client-d" version = "~>1.8.90"
}

// enable xlib specific functionality load vkGetInstanceProcAddr with derelict
Expand All @@ -49,7 +49,7 @@ configuration "dub-platform-xcb-derelict-loader" {
// enable wayland specific functionality load vkGetInstanceProcAddr with derelict
configuration "dub-platform-wayland-derelict-loader" {
versions "VK_USE_PLATFORM_WAYLAND_KHR" "ERUPTED_FROM_DERELICT"
dependencies "wayland-client-d" version = "~>1.8.90"
dependency "wayland-client-d" version = "~>1.8.90"
dependency "derelict-util" version = "~>2.0.4"
}

Expand All @@ -59,7 +59,7 @@ subPackage {
description "Simple Vulkan example"
targetType "executable"
sourceFiles "examples/devices.d"
dependencies "erupted" path = "."
dependency "erupted" path = "."
subConfiguration "erupted" "with-derelict-loader"
}

Expand All @@ -69,6 +69,6 @@ subPackage {
description "Simple Vulkan example"
targetType "executable"
sourceFiles "examples/layers.d"
dependencies "erupted" path = "."
dependency "erupted" path = "."
subConfiguration "erupted" "with-derelict-loader"
}

0 comments on commit f55df6e

Please sign in to comment.