2020-12-15 15:16:09 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2024-08-05 06:32:05 -07:00
|
|
|
|
2020-12-15 15:16:09 +03:00
|
|
|
<Target Name="GenerateVersionData" BeforeTargets="PrepareForBuild">
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<HeaderLines Include="#pragma once" />
|
|
|
|
|
<HeaderLines Include="#define VERSION_MAJOR $(Version.Split('.')[0])" />
|
|
|
|
|
<HeaderLines Include="#define VERSION_MINOR $(Version.Split('.')[1])" />
|
|
|
|
|
<HeaderLines Include="#define VERSION_REVISION $(Version.Split('.')[2])" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<WriteLinesToFile File="Generated Files\version_gen.h" Lines="@(HeaderLines)" Overwrite="true" Encoding="Unicode" WriteOnlyWhenDifferent="true" />
|
|
|
|
|
</Target>
|
2023-10-03 08:31:14 -07:00
|
|
|
<!-- Needed for .\src\modules\videoconference\VideoConferenceProxyFilter\build_vcm_x86.cmd -->
|
|
|
|
|
<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>
|
2023-10-18 08:16:48 -07:00
|
|
|
<ProjectConfiguration Include="Debug|ARM64">
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
<Platform>ARM64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2023-10-03 08:31:14 -07:00
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
<ProjectConfiguration Include="Release|x64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>x64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2023-10-18 08:16:48 -07:00
|
|
|
<ProjectConfiguration Include="Release|ARM64">
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
<Platform>ARM64</Platform>
|
|
|
|
|
</ProjectConfiguration>
|
2023-10-03 08:31:14 -07:00
|
|
|
</ItemGroup>
|
2020-12-15 15:16:09 +03:00
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
<VCProjectVersion>16.0</VCProjectVersion>
|
|
|
|
|
<ProjectGuid>{CC6E41AC-8174-4E8A-8D22-85DD7F4851DF}</ProjectGuid>
|
|
|
|
|
<Keyword>Win32Proj</Keyword>
|
|
|
|
|
<RootNamespace>Version</RootNamespace>
|
|
|
|
|
<ProjectName>Version</ProjectName>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
<PropertyGroup Label="Configuration">
|
|
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
2022-02-07 06:08:30 -08:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
|
|
|
|
</PropertyGroup>
|
2020-12-15 15:16:09 +03:00
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<ImportGroup Label="Shared">
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<AdditionalIncludeDirectories>..\;..\..\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
<PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClInclude Include="version.h" />
|
|
|
|
|
<ClInclude Include="helper.h" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ClCompile Include="version.cpp" />
|
|
|
|
|
<ClCompile Include="helper.cpp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
</Project>
|