diff options
Diffstat (limited to 'protocols/WhatsAppWeb')
-rw-r--r-- | protocols/WhatsAppWeb/WhatsAppWeb.vcxproj | 8 | ||||
-rw-r--r-- | protocols/WhatsAppWeb/src/stdafx.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/protocols/WhatsAppWeb/WhatsAppWeb.vcxproj b/protocols/WhatsAppWeb/WhatsAppWeb.vcxproj index da5fc7e34f..4929d9f266 100644 --- a/protocols/WhatsAppWeb/WhatsAppWeb.vcxproj +++ b/protocols/WhatsAppWeb/WhatsAppWeb.vcxproj @@ -37,13 +37,13 @@ <ProjectName>WhatsAppWeb</ProjectName> </PropertyGroup> <PropertyGroup Label="Vcpkg" Condition="'$(Platform)'=='Win32'"> - <VcpkgUseStatic>true</VcpkgUseStatic> - <VcpkgTriplet>x86-windows-static-md</VcpkgTriplet> + <VcpkgUseStatic>false</VcpkgUseStatic> + <VcpkgTriplet>x86-windows</VcpkgTriplet> <VcpkgConfiguration>$(Configuration)</VcpkgConfiguration> </PropertyGroup> <PropertyGroup Label="Vcpkg" Condition="'$(Platform)'=='x64'"> - <VcpkgUseStatic>true</VcpkgUseStatic> - <VcpkgTriplet>x64-windows-static-md</VcpkgTriplet> + <VcpkgUseStatic>false</VcpkgUseStatic> + <VcpkgTriplet>x64-windows</VcpkgTriplet> <VcpkgConfiguration>$(Configuration)</VcpkgConfiguration> </PropertyGroup> <ImportGroup Label="PropertySheets"> diff --git a/protocols/WhatsAppWeb/src/stdafx.h b/protocols/WhatsAppWeb/src/stdafx.h index 3daa665b0f..c0e160cc2d 100644 --- a/protocols/WhatsAppWeb/src/stdafx.h +++ b/protocols/WhatsAppWeb/src/stdafx.h @@ -64,9 +64,9 @@ Copyright © 2019-22 George Hazan // - install vcpkg (https://github.com/microsoft/vcpkg); // - integrage vcpkg into Visual Studio: // >vcpkg.exe integrate install -// - install static libraries of protobuf: -// >vcpkg.exe install protobuf:x86-windows-static-md -// >vcpkg.exe install protobuf:x64-windows-static-md +// - install dynamic libraries of protobuf: +// >vcpkg.exe install protobuf:x86-windows +// >vcpkg.exe install protobuf:x64-windows #include "google/protobuf/message.h" #include "pmsg.pb.h" |