1
0

Updated LibEvent to release 2.1.11-stable. (#4383)

This finally restores my ability to compile on Windows and Linux from the same source folder (on a network drive).

LibEvent broke this long ago by writing a config file into the source folder, rather than build folder. Now it's finally fixed.
This commit is contained in:
Mattes D
2019-09-04 23:34:54 +02:00
committed by peterbell10
parent 2504538a3a
commit f021e2fe22
4 changed files with 16 additions and 9 deletions

View File

@@ -46,4 +46,8 @@ endif()
if(NOT MSVC)
add_library(OSSupport ${SRCS} ${HDRS})
target_link_libraries(OSSupport fmt::fmt)
if(NOT WIN32)
target_link_libraries(OSSupport event_pthreads_static)
endif()
endif()