2018-05-28 17:39:58 -04:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(SolutionDir)\VSProps\Base.Macros.props" />
|
|
|
|
|
<Import Project="$(VSPropsDir)Base.Targets.props" />
|
2018-05-28 17:39:58 -04:00
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<ProjectGUID>{4482FD2A-EC43-3FFB-AC20-2E5C54B05EAD}</ProjectGUID>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<Import Project="$(VSPropsDir)Configuration.StaticLibrary.props" />
|
2018-05-28 17:39:58 -04:00
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<ImportGroup Label="ExtensionSettings" />
|
2018-05-28 17:39:58 -04:00
|
|
|
|
<ImportGroup Label="PropertySheets">
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<Import Project="$(VSPropsDir)Base.props" />
|
|
|
|
|
<Import Project="$(VSPropsDir)ClDisableAllWarnings.props" />
|
2018-05-28 17:39:58 -04:00
|
|
|
|
</ImportGroup>
|
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
|
|
|
|
</PropertyGroup>
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<ItemDefinitionGroup>
|
2018-05-28 17:39:58 -04:00
|
|
|
|
<ClCompile>
|
|
|
|
|
<AdditionalIncludeDirectories>..\include;..\thirdparty\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
<ResourceCompile>
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<PreprocessorDefinitions>WIN32;_WINDOWS;DISCORD_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2018-05-28 17:39:58 -04:00
|
|
|
|
<AdditionalIncludeDirectories>..\include;..\thirdparty\rapidjson-1.1.0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
</ResourceCompile>
|
|
|
|
|
<Midl>
|
|
|
|
|
<AdditionalIncludeDirectories>..\include;..\thirdparty\rapidjson-1.1.0\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
|
|
|
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
|
|
|
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
|
|
|
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
|
|
|
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
|
|
|
</Midl>
|
|
|
|
|
<Lib />
|
|
|
|
|
</ItemDefinitionGroup>
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
|
|
|
|
|
<ResourceCompile>
|
|
|
|
|
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
</ResourceCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
2019-11-26 15:31:15 +11:00
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
2018-05-28 17:39:58 -04:00
|
|
|
|
<ResourceCompile>
|
2020-08-18 18:07:08 -07:00
|
|
|
|
<PreprocessorDefinitions>NDEBUG;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2018-05-28 17:39:58 -04:00
|
|
|
|
</ResourceCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClInclude Include="..\include\discord_rpc.h" />
|
|
|
|
|
<ClInclude Include="..\discord_register.h" />
|
|
|
|
|
<ClInclude Include="rpc_connection.h" />
|
|
|
|
|
<ClInclude Include="serialization.h" />
|
|
|
|
|
<ClInclude Include="connection.h" />
|
|
|
|
|
<ClInclude Include="backoff.h" />
|
|
|
|
|
<ClInclude Include="msg_queue.h" />
|
|
|
|
|
<ClCompile Include="discord_rpc.cpp" />
|
|
|
|
|
<ClCompile Include="rpc_connection.cpp" />
|
|
|
|
|
<ClCompile Include="serialization.cpp" />
|
|
|
|
|
<ClCompile Include="connection_win.cpp" />
|
|
|
|
|
<ClCompile Include="discord_register_win.cpp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
</ImportGroup>
|
2019-11-26 15:31:15 +11:00
|
|
|
|
</Project>
|