1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33: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 target_link_libraries(mayaqua
PRIVATE PRIVATE
"crypt32.lib"
"DbgHelp.Lib" "DbgHelp.Lib"
"dwmapi.lib" "dwmapi.lib"
"iphlpapi.lib" "iphlpapi.lib"
@ -62,6 +63,7 @@ if(WIN32)
"Secur32.Lib" "Secur32.Lib"
"setupapi.lib" "setupapi.lib"
"winmm.lib" "winmm.lib"
"ws2_32.lib"
"WtsApi32.Lib" "WtsApi32.Lib"
) )
endif() endif()