change wireguard vpn protocol implementation on Windows from wg.exe to wireguard windows embeddable-dll-service

This commit is contained in:
DiepDTN 2021-10-08 07:44:19 +07:00
parent d553d7f772
commit 6042317552
13 changed files with 243 additions and 3 deletions

View file

@ -0,0 +1,23 @@
TARGET = wireguard-service
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
LIBS += \
-luser32 \
-lrasapi32 \
-lshlwapi \
-liphlpapi \
-lws2_32 \
-liphlpapi \
-lgdi32 \
-lAdvapi32 \
-lKernel32
HEADERS = \
wireguardtunnelservice.h
SOURCES = \
main.cpp \
wireguardtunnelservice.cpp