vibe-core/dub.sdl
Sönke Ludwig 78fef30310 Implement callback based timers without relying on a task. Fixes #86.
In the previous implementation, the callback tasks were starving as soon as the last external reference to a non-pending timer was given up.
2018-10-27 15:48:21 +02:00

40 lines
931 B
Plaintext

name "vibe-core"
description "The I/O core library of vibe.d."
authors "Sönke Ludwig"
copyright "Copyright © 2016-2018, rejectedsoftware e.K."
license "MIT"
dependency "eventcore" version="~>0.8.39"
dependency "stdx-allocator" version="~>2.77.0"
targetName "vibe_core"
mainSourceFile "source/vibe/appmain.d"
configuration "winapi" {
subConfiguration "eventcore" "winapi"
}
configuration "winapi-optlink" {
subConfiguration "eventcore" "winapi-optlink"
}
configuration "epoll" {
subConfiguration "eventcore" "epoll"
}
configuration "kqueue" {
subConfiguration "eventcore" "kqueue"
}
configuration "select" {
subConfiguration "eventcore" "select"
}
configuration "select-optlink" {
subConfiguration "eventcore" "select-optlink"
}
configuration "libasync" {
subConfiguration "eventcore" "libasync"
}
buildType "unittest" {
buildOptions "unittests" "debugMode" "debugInfo"
debugVersions "VibeMutexLog" "VibeAsyncLog"
}