summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-08-10 01:32:07 -0400
committerAdam <Adam@anope.org>2011-08-10 01:32:07 -0400
commitded98ed3ded63aa37b7226cd7228b375df8b33e3 (patch)
tree83e728dddd3b886d198908979a72916727d71ad1 /src/CMakeLists.txt
parent13bcc4ef14c0c61e8ed578ac9346291ae731b8df (diff)
Fixed windows build
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 47d2e8efb..a01b608a4 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -4,6 +4,7 @@ file(GLOB SRC_SRCS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.cpp")
# If using Windows, add the windows.cpp, the win32 threading engine, and the socket engine to the list
if(WIN32)
append_to_list(SRC_SRCS win32/windows.cpp)
+ append_to_list(SRC_SRCS win32/sigaction/sigaction.cpp)
append_to_list(SRC_SRCS threadengines/threadengine_win32.cpp)
append_to_list(SRC_SRCS socketengines/pipeengine_win32.cpp)
# If not using Windows, add the pthread threading engine to the list