4c772629f2
This didn't link anyway and since 64-bit compilation is the default for DMD nowadays, there is no reason whatsoever to keep supporting it.
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
name "eventcore"
|
|
description "Pro-actor based abstraction layer over operating system asynchronous I/O facilities."
|
|
license "MIT"
|
|
copyright "Copyright © 2016-2018 Sönke Ludwig"
|
|
|
|
targetType "library"
|
|
|
|
libs "resolv" platform="linux"
|
|
libs "ws2_32" "user32" platform="windows-dmd"
|
|
|
|
dependency "taggedalgebraic" version=">=0.10.12 <0.12.0-0"
|
|
|
|
configuration "epoll" {
|
|
platforms "linux"
|
|
versions "EventcoreEpollDriver"
|
|
}
|
|
|
|
// getaddrinfo_a based DNS lookups
|
|
configuration "epoll-gaia" {
|
|
libs "anl"
|
|
versions "EventcoreUseGAIA"
|
|
platforms "linux"
|
|
versions "EventcoreEpollDriver"
|
|
}
|
|
|
|
configuration "cfrunloop" {
|
|
platforms "osx"
|
|
versions "EventcoreCFRunLoopDriver"
|
|
lflags "-framework" "CoreFoundation"
|
|
lflags "-framework" "CoreServices"
|
|
}
|
|
|
|
configuration "kqueue" {
|
|
platforms "osx" "freebsd"
|
|
versions "EventcoreKqueueDriver"
|
|
}
|
|
|
|
configuration "winapi" {
|
|
platforms "windows"
|
|
versions "EventcoreWinAPIDriver"
|
|
}
|
|
|
|
configuration "select" {
|
|
platforms "posix" "windows"
|
|
versions "EventcoreSelectDriver"
|
|
}
|
|
|
|
configuration "libasync" {
|
|
dependency "libasync" version="~>0.8.2"
|
|
versions "EventcoreLibasyncDriver"
|
|
}
|
|
|
|
configuration "generic" {
|
|
// Defines eventDriver as the generic EventDriver interface. Setup must be done manually.
|
|
}
|