This allows projects that are strictly "GPLv2 only" to use WinDivert without licensing issues. See the FSF's compatibility matrix here: https://www.gnu.org/licenses/gpl-faq.en.html This change does not affect existing projects that can continue to use the LGPLv3 as before. Also, bump the WinDivert version to 1.4.1.
22 lines
431 B
Plaintext
22 lines
431 B
Plaintext
|
|
!IF "$(_BUILDARCH)" == "x86"
|
|
CPU=i386
|
|
!ELSE
|
|
CPU=$(_BUILDARCH)
|
|
!ENDIF
|
|
|
|
TARGETNAME=streamdump
|
|
TARGETTYPE=PROGRAM
|
|
TARGETPATH=..\..\install\WDDK
|
|
TARGETLIBS=\
|
|
$(SDK_LIB_PATH)\setupapi.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
|
$(TARGETPATH)\$(CPU)\WinDivert.lib
|
|
UMTYPE=console
|
|
UMENTRY=main
|
|
USE_MSVCRT=1
|
|
INCLUDES=$(DDK_INC_PATH);$(KMDF_INC_PATH)\$(KMDF_VER_PATH);..\..\include
|
|
SOURCES=streamdump.c
|
|
|