eventcore/dub.sdl

40 lines
860 B
Plaintext
Raw Normal View History

name "eventcore"
description "Pro-actor based abstraction layer over operating system asynchronous I/O facilities."
2016-06-18 05:36:31 +00:00
license "MIT"
copyright "Copyright © 2012-2016 rejectedsoftware e.K."
2016-10-05 12:38:29 +00:00
targetType "library"
libs "anl" platform="linux"
libs "ws2_32" platform="windows"
dependency "taggedalgebraic" version="~>0.10.4"
configuration "epoll" {
platforms "linux"
versions "EventcoreEpollDriver"
}
configuration "kqueue" {
platforms "osx" "freebsd"
versions "EventcoreKqueueDriver"
}
configuration "winapi" {
platforms "windows"
versions "EventcoreWinAPIDriver"
}
configuration "select" {
versions "EventcoreSelectDriver"
2016-10-05 12:38:29 +00:00
}
configuration "libasync" {
dependency "libasync" version="~>0.7.9"
versions "EventcoreLibasyncDriver"
}
configuration "generic" {
// Defines eventDriver as the generic EventDriver interface. Setup must be done manually.
2016-10-05 12:38:29 +00:00
}