1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

Merge pull request #1740 from domosekai/cmake

Mayaqua/CMakeLists: Fix win32 build without vcpkg
This commit is contained in:
Yihong Wu 2023-01-07 09:52:12 +08:00 committed by GitHub
commit 58c0e1ded4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,6 +54,7 @@ if(WIN32)
target_link_libraries(mayaqua
PRIVATE
"crypt32.lib"
"DbgHelp.Lib"
"dwmapi.lib"
"iphlpapi.lib"
@ -62,6 +63,7 @@ if(WIN32)
"Secur32.Lib"
"setupapi.lib"
"winmm.lib"
"ws2_32.lib"
"WtsApi32.Lib"
)
endif()