Fix mingw compilation

In order to compile enet on mingw, you need to link against winmm and
ws2_32. This explicitly makes those libraries required on mingw
This commit is contained in:
James Rowe 2017-07-12 19:24:14 -06:00
parent 9d9ba122d4
commit 6cc8cc8a26

View file

@ -68,3 +68,7 @@ add_library(enet STATIC
unix.c
win32.c
)
if (MINGW)
target_link_libraries(enet winmm ws2_32)
endif()