From 57cecc55fc00e3efe46e7b1584a154174b74d45f Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Fri, 9 May 2025 12:42:22 -0400 Subject: [PATCH] mark nanoev posix as enabled only on unix systems --- src/posix/dune | 1 + 1 file changed, 1 insertion(+) diff --git a/src/posix/dune b/src/posix/dune index 7387ac6..9cfb691 100644 --- a/src/posix/dune +++ b/src/posix/dune @@ -1,6 +1,7 @@ (library (name nanoev_posix) (public_name nanoev-posix) + (enabled_if (= %{os_type} "Unix")) (synopsis "posix backend (poll/ppoll+mtime)") (private_modules heap) (libraries threads nanoev unix iomux mtime mtime.clock.os))