mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
ca34dd4b3f
- Remove stupid stuff. - Reorder imports so that default settings are gathered correctly. Microsoft.Cpp.props needs to be imported after ConfigurationType and UseDebugLibraries have been set because it does different stuff depending on their values.
120 lines
5.3 KiB
XML
120 lines
5.3 KiB
XML
<?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>
|
|
<PropertyGroup Label="Globals">
|
|
<ProjectGuid>{EEA3BDD1-8A08-41C1-BA57-E05D5C2CD8FF}</ProjectGuid>
|
|
<Keyword>Win32Proj</Keyword>
|
|
<RootNamespace>HEVC_encoder</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
<Import Project="..\..\yasm\vsyasm.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
<Import Project="..\C_Properties.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
<Import Project="..\C_Properties.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
<Import Project="..\C_Properties.props" />
|
|
<Import Project="..\Release_Optimizations.props" />
|
|
</ImportGroup>
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
<Import Project="..\C_Properties.props" />
|
|
<Import Project="..\Release_Optimizations.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<OutDir>$(SolutionDir)$(Platform)-$(Configuration)-libs\</OutDir>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="..\..\src\bitstream.c" />
|
|
<ClCompile Include="..\..\src\cabac.c" />
|
|
<ClCompile Include="..\..\src\config.c" />
|
|
<ClCompile Include="..\..\src\context.c" />
|
|
<ClCompile Include="..\..\src\debug.c" />
|
|
<ClCompile Include="..\..\src\encmain.c" />
|
|
<ClCompile Include="..\..\src\encoder.c" />
|
|
<ClCompile Include="..\..\src\filter.c" />
|
|
<ClCompile Include="..\..\src\inter.c" />
|
|
<ClCompile Include="..\..\src\intra.c" />
|
|
<ClCompile Include="..\..\src\nal.c" />
|
|
<ClCompile Include="..\..\src\picture.c" />
|
|
<ClCompile Include="..\..\src\search.c" />
|
|
<ClCompile Include="..\..\src\transform.c" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="..\..\src\bitstream.h" />
|
|
<ClInclude Include="..\..\src\cabac.h" />
|
|
<ClInclude Include="..\..\src\config.h" />
|
|
<ClInclude Include="..\..\src\context.h" />
|
|
<ClInclude Include="..\..\src\debug.h" />
|
|
<ClInclude Include="..\..\src\encoder.h" />
|
|
<ClInclude Include="..\..\src\filter.h" />
|
|
<ClInclude Include="..\..\src\global.h" />
|
|
<ClInclude Include="..\..\src\inter.h" />
|
|
<ClInclude Include="..\..\src\intra.h" />
|
|
<ClInclude Include="..\..\src\nal.h" />
|
|
<ClInclude Include="..\..\src\picture.h" />
|
|
<ClInclude Include="..\..\src\search.h" />
|
|
<ClInclude Include="..\..\src\transform.h" />
|
|
<ClInclude Include="..\..\src\x64\test64.h" />
|
|
<ClInclude Include="..\..\src\x86\test.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<YASM Include="..\..\src\x64\test64.asm" />
|
|
<YASM Include="..\..\src\x86\test.asm" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
<Import Project="..\..\yasm\vsyasm.targets" />
|
|
</ImportGroup>
|
|
</Project> |