forked from nmap/npcap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libpcap to 1.9.0, using CMake to build. See nmap/nmap#1506
- Loading branch information
1 parent
34e714f
commit a5ebb08
Showing
6 changed files
with
17 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Submodule libpcap
updated
from 06b30f to 0ff834
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
set CMAKE="C:\Program Files\CMake\bin\cmake.exe" | ||
set GENERATOR=Visual Studio 14 2015 | ||
set NPCAP_SDK=..\..\npcap-sdk-1.0\ | ||
|
||
mkdir build-win32 | ||
cd build-win32 | ||
%CMAKE% -DPACKET_DLL_DIR=..\%NPCAP_SDK% -DLIBRARY_NAME=wpcap -G "%GENERATOR%" ..\libpcap\ | ||
cd .. | ||
|
||
mkdir build-x64 | ||
cd build-x64 | ||
%CMAKE% -DPACKET_DLL_DIR=..\%NPCAP_SDK% -DLIBRARY_NAME=wpcap -G "%GENERATOR% Win64" ..\libpcap\ | ||
cd .. |