diff options
Diffstat (limited to 'protocols/WhatsApp/WhatsApp.vcxproj')
-rw-r--r-- | protocols/WhatsApp/WhatsApp.vcxproj | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/protocols/WhatsApp/WhatsApp.vcxproj b/protocols/WhatsApp/WhatsApp.vcxproj new file mode 100644 index 0000000000..a3c27bbfc6 --- /dev/null +++ b/protocols/WhatsApp/WhatsApp.vcxproj @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Debug|Win32"> + <Configuration>Debug</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|x64"> + <Configuration>Debug</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|Win32"> + <Configuration>Release</Configuration> + <Platform>Win32</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|x64"> + <Configuration>Release</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\libs\libqrencode\libqrencode.vcxproj"> + <Project>{4d3554de-6e14-4f94-a909-a4b19151a47e}</Project> + </ProjectReference> + <ProjectReference Include="..\..\libs\libsignal\libsignal.vcxproj"> + <Project>{620e0be7-3763-4f35-9dbd-4770104e269c}</Project> + </ProjectReference> + <ProjectReference Include="..\..\libs\zlib\zlib.vcxproj"> + <Project>{e2a369cd-eda3-414f-8ad0-e732cd7ee68c}</Project> + </ProjectReference> + </ItemGroup> + <ItemGroup> + <Image Include="res\whatsapp.ico" /> + </ItemGroup> + <PropertyGroup Label="Globals"> + <ProjectGuid>{13E796AD-BEA4-4213-A1B8-E18E2397E544}</ProjectGuid> + <ProjectName>WhatsApp</ProjectName> + </PropertyGroup> + <PropertyGroup Label="Vcpkg" Condition="'$(Platform)'=='Win32'"> + <VcpkgUseStatic>false</VcpkgUseStatic> + <VcpkgTriplet>x86-windows</VcpkgTriplet> + <VcpkgConfiguration>$(Configuration)</VcpkgConfiguration> + </PropertyGroup> + <PropertyGroup Label="Vcpkg" Condition="'$(Platform)'=='x64'"> + <VcpkgUseStatic>false</VcpkgUseStatic> + <VcpkgTriplet>x64-windows</VcpkgTriplet> + <VcpkgConfiguration>$(Configuration)</VcpkgConfiguration> + </PropertyGroup> + <ImportGroup Label="PropertySheets"> + <Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" /> + </ImportGroup> + <ItemDefinitionGroup> + <ClCompile> + <ExceptionHandling>Sync</ExceptionHandling> + </ClCompile> + </ItemDefinitionGroup> + <ItemGroup> + <ClCompile Include="..\..\utils\mir_signal.cpp"> + <PrecompiledHeader>NotUsing</PrecompiledHeader> + </ClCompile> + <ClCompile Include="src\avatars.cpp" /> + <ClCompile Include="src\chats.cpp" /> + <ClCompile Include="src\crypt.cpp" /> + <ClCompile Include="src\iq.cpp" /> + <ClCompile Include="src\main.cpp" /> + <ClCompile Include="src\message.cpp" /> + <ClCompile Include="src\noise.cpp" /> + <ClCompile Include="src\options.cpp" /> + <ClCompile Include="src\pmsg.pb.cc"> + <PrecompiledHeader>NotUsing</PrecompiledHeader> + </ClCompile> + <ClCompile Include="src\proto.cpp" /> + <ClCompile Include="src\qrcode.cpp" /> + <ClCompile Include="src\server.cpp" /> + <ClCompile Include="src\signal.cpp" /> + <ClCompile Include="src\stdafx.cxx"> + <PrecompiledHeader>Create</PrecompiledHeader> + </ClCompile> + <ClCompile Include="src\utils.cpp" /> + <ClCompile Include="src\wanode.cpp" /> + <ClInclude Include="..\..\utils\mir_signal.h" /> + <ClInclude Include="src\db.h" /> + <ClInclude Include="src\dicts.h" /> + <ClInclude Include="src\proto.h" /> + <ClInclude Include="src\resource.h" /> + <ClInclude Include="src\stdafx.h" /> + <ClInclude Include="src\utils.h" /> + <ClInclude Include="src\version.h" /> + </ItemGroup> + <ItemGroup> + <ResourceCompile Include="res\version.rc" /> + <ResourceCompile Include="res\whatsapp.rc" /> + </ItemGroup> +</Project>
\ No newline at end of file |