diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 94c5ef24b..73d659a5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,10 @@ if(HAS_EPOLL) option(FORCE_POLL "Force the use of poll() instead of epoll()." OFF) if(NOT FORCE_POLL) set(EPOLL_DEFS "-DENABLE_EPOLL=1") - set(EPOLL_SRCS "nio.c") + endif() +else() + if(BUILD_EXAMPLES) + message(FATAL_ERROR "Examples are using epoll event I/O. Without epoll available, you can not build/run those.") endif() endif() @@ -100,8 +103,8 @@ else() unset(NDPI_WITH_MAXMINDDB CACHE) endif() -add_executable(nDPId nDPId.c ${EPOLL_SRCS} utils.c) -add_executable(nDPIsrvd nDPIsrvd.c ${EPOLL_SRCS} utils.c) +add_executable(nDPId nDPId.c nio.c utils.c) +add_executable(nDPIsrvd nDPIsrvd.c nio.c utils.c) add_executable(nDPId-test nDPId-test.c) add_custom_target(dist) |