Skip to content

Commit

Permalink
Add backend configurations for kqueue, epoll, and select
Browse files Browse the repository at this point in the history
  • Loading branch information
trikko committed Dec 26, 2024
1 parent a4ad99a commit b67e9ee
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ configuration "disable_websockets" {
versions "disable_websockets"
}

configuration "kqueue_backend" {
targetType "library"
versions "use_kqueue"
}

configuration "epoll_backend" {
targetType "library"
versions "use_epoll"
}

configuration "select_backend" {
targetType "library"
versions "use_select"
}

sourcePaths "source"

subPackage "./init-exec"
Expand Down

0 comments on commit b67e9ee

Please sign in to comment.