From 2beebd6df394ae3777ba602d13e7c9e10e3bc06c Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Sun, 24 Aug 2014 20:07:30 -0300 Subject: [PATCH] Fix invalid lib name. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a3a83d3..6eb8cbe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ FIND_PACKAGE(PCAP REQUIRED) # Set some Windows specific flags IF(WIN32) # We need to link against these libs - SET(LIBTINS_OS_LIBS Ws2_32.lib Iphlp/api.lib) + SET(LIBTINS_OS_LIBS Ws2_32.lib Iphlpapi.lib) # Add the NOMINMAX macro to avoid Windows' min and max macros. # While compiling on windows, for some reason, WIN32 is not defined,