forked from Aleksoid1978/MPC-BE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubtitles.vcxproj
104 lines (104 loc) · 4.43 KB
/
Subtitles.vcxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="Current" 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>{5E56335F-0FB1-4EEA-B240-D8DC5E0608E4}</ProjectGuid>
<RootNamespace>Subtitles</RootNamespace>
<Keyword>Win32Proj</Keyword>
<ProjectName>Subtitles</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<Import Project="$(SolutionDir)src\platform.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>Static</UseOfMfc>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(SolutionDir)src\common.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>$(SolutionDir)include;$(SolutionDir)src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>stdafx.h</PrecompiledHeaderFile>
<PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="BaseSub.cpp" />
<ClCompile Include="CCDecoder.cpp" />
<ClCompile Include="ColorConvert.cpp" />
<ClCompile Include="CompositionObject.cpp" />
<ClCompile Include="DVBSub.cpp" />
<ClCompile Include="Ellipse.cpp" />
<ClCompile Include="HdmvSub.cpp" />
<ClCompile Include="Rasterizer.cpp" />
<ClCompile Include="RealTextParser.cpp" />
<ClCompile Include="RenderedHdmvSubtitle.cpp" />
<ClCompile Include="RenderingCache.cpp" />
<ClCompile Include="RTS.cpp" />
<ClCompile Include="stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="STS.cpp" />
<ClCompile Include="SubtitleHelpers.cpp" />
<ClCompile Include="SubtitleInputPin.cpp" />
<ClCompile Include="TextFile.cpp" />
<ClCompile Include="USFSubtitles.cpp" />
<ClCompile Include="VobSubFile.cpp" />
<ClCompile Include="VobSubFileRipper.cpp" />
<ClCompile Include="VobSubImage.cpp" />
<ClCompile Include="XSUBSubtitle.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="BaseSub.h" />
<ClInclude Include="CCDecoder.h" />
<ClInclude Include="ColorConvert.h" />
<ClInclude Include="CompositionObject.h" />
<ClInclude Include="DVBSub.h" />
<ClInclude Include="Ellipse.h" />
<ClInclude Include="HdmvSub.h" />
<ClInclude Include="Rasterizer.h" />
<ClInclude Include="RealTextParser.h" />
<ClInclude Include="RenderedHdmvSubtitle.h" />
<ClInclude Include="RenderingCache.h" />
<ClInclude Include="RTS.h" />
<ClInclude Include="SeparableFilter.h" />
<ClInclude Include="stdafx.h" />
<ClInclude Include="STS.h" />
<ClInclude Include="SubtitleHelpers.h" />
<ClInclude Include="SubtitleInputPin.h" />
<ClInclude Include="TextFile.h" />
<ClInclude Include="USFSubtitles.h" />
<ClInclude Include="VobSubFile.h" />
<ClInclude Include="VobSubFileRipper.h" />
<ClInclude Include="VobSubImage.h" />
<ClInclude Include="XSUBSubtitle.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>