Subversion Repositories spk

Rev

Rev 121 | Rev 128 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
121 cycrow 1
<?xml version="1.0" encoding="utf-8"?>
2
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <ItemGroup Label="ProjectConfigurations">
4
    <ProjectConfiguration Include="Debug|Win32">
5
      <Configuration>Debug</Configuration>
6
      <Platform>Win32</Platform>
7
    </ProjectConfiguration>
8
    <ProjectConfiguration Include="Debug|x64">
9
      <Configuration>Debug</Configuration>
10
      <Platform>x64</Platform>
11
    </ProjectConfiguration>
12
    <ProjectConfiguration Include="Release|Win32">
13
      <Configuration>Release</Configuration>
14
      <Platform>Win32</Platform>
15
    </ProjectConfiguration>
16
    <ProjectConfiguration Include="Release|x64">
17
      <Configuration>Release</Configuration>
18
      <Platform>x64</Platform>
19
    </ProjectConfiguration>
20
  </ItemGroup>
21
  <PropertyGroup Label="Globals">
22
    <ProjectGuid>{2E489570-2052-4C36-AD10-31B26A2D7F74}</ProjectGuid>
23
    <RootNamespace>SpkExplorer</RootNamespace>
24
    <Keyword>ManagedCProj</Keyword>
25
    <WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
26
  </PropertyGroup>
27
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
28
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
29
    <ConfigurationType>Application</ConfigurationType>
30
    <PlatformToolset>v141</PlatformToolset>
31
    <CharacterSet>Unicode</CharacterSet>
32
    <CLRSupport>true</CLRSupport>
33
    <WholeProgramOptimization>true</WholeProgramOptimization>
34
  </PropertyGroup>
35
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
36
    <ConfigurationType>Application</ConfigurationType>
37
    <PlatformToolset>v141</PlatformToolset>
38
    <CharacterSet>Unicode</CharacterSet>
39
    <CLRSupport>true</CLRSupport>
40
  </PropertyGroup>
41
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
42
    <ConfigurationType>Application</ConfigurationType>
43
    <PlatformToolset>v141</PlatformToolset>
44
    <CharacterSet>Unicode</CharacterSet>
45
    <CLRSupport>true</CLRSupport>
46
    <WholeProgramOptimization>true</WholeProgramOptimization>
47
  </PropertyGroup>
48
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
49
    <ConfigurationType>Application</ConfigurationType>
50
    <PlatformToolset>v141</PlatformToolset>
51
    <CharacterSet>Unicode</CharacterSet>
52
    <CLRSupport>true</CLRSupport>
53
  </PropertyGroup>
54
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
55
  <ImportGroup Label="ExtensionSettings">
56
  </ImportGroup>
57
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
58
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
59
  </ImportGroup>
60
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
61
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
62
  </ImportGroup>
63
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
64
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65
  </ImportGroup>
66
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
67
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
68
  </ImportGroup>
69
  <PropertyGroup Label="UserMacros" />
70
  <PropertyGroup>
71
    <_ProjectFileVersion>14.0.25431.1</_ProjectFileVersion>
72
  </PropertyGroup>
73
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
74
    <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
75
    <IntDir>$(SolutionDir)$(Configuration)\SpkExplorer\</IntDir>
76
    <LinkIncremental>true</LinkIncremental>
77
  </PropertyGroup>
78
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
79
    <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
80
    <IntDir>$(SolutionDir)$(Configuration)\SpkExplorer\</IntDir>
81
    <LinkIncremental>false</LinkIncremental>
82
  </PropertyGroup>
83
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
84
    <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
85
    <IntDir>$(Platform)\$(Configuration)\</IntDir>
86
    <LinkIncremental>true</LinkIncremental>
87
  </PropertyGroup>
88
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
89
    <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
90
    <IntDir>$(Platform)\$(Configuration)\</IntDir>
91
    <LinkIncremental>false</LinkIncremental>
92
  </PropertyGroup>
93
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
94
    <ClCompile>
95
      <Optimization>Disabled</Optimization>
96
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
97
      <PreprocessorDefinitions>WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_SPKDLL;_STRINGCLR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
98
      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
99
      <PrecompiledHeader />
100
      <WarningLevel>Level3</WarningLevel>
101
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
125 cycrow 102
      <MinimalRebuild>false</MinimalRebuild>
121 cycrow 103
    </ClCompile>
104
    <Link>
105
      <AdditionalDependencies />
106
      <GenerateDebugInformation>true</GenerateDebugInformation>
107
      <AssemblyDebug>true</AssemblyDebug>
108
      <SubSystem>Windows</SubSystem>
109
      <EntryPointSymbol>main</EntryPointSymbol>
110
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
111
      <DataExecutionPrevention />
112
      <TargetMachine>MachineX86</TargetMachine>
113
    </Link>
114
  </ItemDefinitionGroup>
115
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
116
    <ClCompile>
117
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
118
      <PreprocessorDefinitions>WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_STRINGCLR;_SPKDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
119
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
120
      <PrecompiledHeader />
121
      <WarningLevel>Level3</WarningLevel>
122
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
123
    </ClCompile>
124
    <Link>
125
      <AdditionalDependencies />
126
      <OutputFile>$(OutDir)$(ProjectName).exe</OutputFile>
127
      <GenerateDebugInformation>true</GenerateDebugInformation>
128
      <SubSystem>Windows</SubSystem>
129
      <EntryPointSymbol>main</EntryPointSymbol>
130
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
131
      <DataExecutionPrevention />
132
      <TargetMachine>MachineX86</TargetMachine>
133
    </Link>
134
  </ItemDefinitionGroup>
135
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
136
    <Midl>
137
      <TargetEnvironment>X64</TargetEnvironment>
138
    </Midl>
139
    <ClCompile>
140
      <Optimization>Disabled</Optimization>
141
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
142
      <PreprocessorDefinitions>WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_SPKDLL;_STRINGCLR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
143
      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
144
      <PrecompiledHeader />
145
      <WarningLevel>Level3</WarningLevel>
146
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
147
    </ClCompile>
148
    <Link>
149
      <AdditionalDependencies>$(SolutionDir)$(Configuration)/spk.lib</AdditionalDependencies>
150
      <GenerateDebugInformation>true</GenerateDebugInformation>
151
      <AssemblyDebug>true</AssemblyDebug>
152
      <SubSystem>Windows</SubSystem>
153
      <EntryPointSymbol>main</EntryPointSymbol>
154
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
155
      <DataExecutionPrevention />
156
      <TargetMachine>MachineX64</TargetMachine>
157
    </Link>
158
  </ItemDefinitionGroup>
159
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
160
    <Midl>
161
      <TargetEnvironment>X64</TargetEnvironment>
162
    </Midl>
163
    <ClCompile>
164
      <AdditionalIncludeDirectories>../libspk/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
165
      <PreprocessorDefinitions>WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_STRINGCLR;_SPKDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
166
      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
167
      <PrecompiledHeader />
168
      <WarningLevel>Level3</WarningLevel>
169
      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
170
    </ClCompile>
171
    <Link>
172
      <AdditionalDependencies>$(SolutionDir)$(Configuration)\spk.lib</AdditionalDependencies>
173
      <OutputFile>$(OutDir)$(ProjectName).exe</OutputFile>
174
      <GenerateDebugInformation>true</GenerateDebugInformation>
175
      <SubSystem>Windows</SubSystem>
176
      <EntryPointSymbol>main</EntryPointSymbol>
177
      <RandomizedBaseAddress>false</RandomizedBaseAddress>
178
      <DataExecutionPrevention />
179
      <TargetMachine>MachineX64</TargetMachine>
180
    </Link>
181
  </ItemDefinitionGroup>
182
  <ItemGroup>
183
    <Reference Include="System">
184
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
185
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
186
    </Reference>
187
    <Reference Include="System.Data">
188
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
189
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
190
    </Reference>
191
    <Reference Include="System.Drawing">
192
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
193
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
194
    </Reference>
195
    <Reference Include="System.Windows.Forms">
196
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
197
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
198
    </Reference>
199
    <Reference Include="System.Xml">
200
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
201
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
202
    </Reference>
203
  </ItemGroup>
204
  <ItemGroup>
205
    <ProjectReference Include="..\libspk\Windows\spk.vcxproj">
206
      <Project>{c18ec70d-7048-485c-8bb3-e219c6c8e352}</Project>
207
      <CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
208
      <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
209
    </ProjectReference>
210
  </ItemGroup>
211
  <ItemGroup>
212
    <ClCompile Include="src\AssemblyInfo.cpp" />
213
    <ClCompile Include="src\Forms\AddDialog.cpp" />
214
    <ClCompile Include="src\Forms\ExtractDialog.cpp" />
215
    <ClCompile Include="src\Forms\FileExists.cpp" />
216
    <ClCompile Include="src\Forms\PackageInfo.cpp" />
217
    <ClCompile Include="src\Forms\SpkForm.cpp" />
218
    <ClCompile Include="src\SpkExplorer.cpp" />
219
    <ClCompile Include="src\stdafx.cpp" />
220
  </ItemGroup>
221
  <ItemGroup>
222
    <ClInclude Include="src\Forms\AddDialog.h">
223
      <FileType>CppForm</FileType>
224
    </ClInclude>
225
    <ClInclude Include="src\Forms\ConvertFile.h">
226
      <FileType>CppForm</FileType>
227
    </ClInclude>
228
    <ClInclude Include="src\Forms\DropFileDialog.h">
229
      <FileType>CppForm</FileType>
230
    </ClInclude>
231
    <ClInclude Include="src\Forms\ExtractDialog.h">
232
      <FileType>CppForm</FileType>
233
    </ClInclude>
234
    <ClInclude Include="src\Forms\FileExists.h">
235
      <FileType>CppForm</FileType>
236
    </ClInclude>
237
    <ClInclude Include="src\Forms\Form1.h">
238
      <FileType>CppForm</FileType>
239
    </ClInclude>
240
    <ClInclude Include="src\Forms\PackageInfo.h">
241
      <FileType>CppForm</FileType>
242
    </ClInclude>
243
    <ClInclude Include="src\Forms\SpkForm.h">
244
      <FileType>CppForm</FileType>
245
    </ClInclude>
246
    <ClInclude Include="src\resource.h" />
247
    <ClInclude Include="src\stdafx.h" />
248
  </ItemGroup>
249
  <ItemGroup>
250
    <Image Include="..\..\..\..\Pictures\spk.bmp" />
251
    <Image Include="..\PluginManager\Icons\X-PlugInManager-Icon86px.ico" />
252
    <Image Include="..\spk\Icons\advert.png" />
253
    <Image Include="..\spk\Icons\backup.png" />
254
    <Image Include="..\spk\Icons\cockpitscene.png" />
255
    <Image Include="..\spk\Icons\extras.png" />
256
    <Image Include="..\spk\Icons\map.png" />
257
    <Image Include="..\spk\Icons\mission.png" />
258
    <Image Include="..\spk\Icons\mods.png" />
259
    <Image Include="..\spk\Icons\readme.png" />
260
    <Image Include="..\spk\Icons\screenshot.png" />
261
    <Image Include="..\spk\Icons\script.png" />
262
    <Image Include="..\spk\Icons\shipmodel.png" />
263
    <Image Include="..\spk\Icons\shipother.png" />
264
    <Image Include="..\spk\Icons\shipscene.png" />
265
    <Image Include="..\spk\Icons\sound.png" />
266
    <Image Include="..\spk\Icons\textfile.png" />
267
    <Image Include="..\spk\Icons\uninstall.png" />
268
  </ItemGroup>
269
  <ItemGroup>
270
    <ResourceCompile Include="app.rc" />
271
  </ItemGroup>
272
  <ItemGroup>
273
    <Text Include="ReadMe.txt" />
274
  </ItemGroup>
275
  <ItemGroup>
276
    <EmbeddedResource Include="src\Forms\AddDialog.resx">
277
      <DependentUpon>src\Forms\AddDialog.h</DependentUpon>
278
      <SubType>Designer</SubType>
279
    </EmbeddedResource>
280
    <EmbeddedResource Include="src\Forms\ConvertFile.resx">
281
      <DependentUpon>src\Forms\ConvertFile.h</DependentUpon>
282
      <SubType>Designer</SubType>
283
    </EmbeddedResource>
284
    <EmbeddedResource Include="src\Forms\DropFileDialog.resx">
285
      <DependentUpon>src\Forms\DropFileDialog.h</DependentUpon>
286
      <SubType>Designer</SubType>
287
    </EmbeddedResource>
288
    <EmbeddedResource Include="src\Forms\ExtractDialog.resx">
289
      <DependentUpon>src\Forms\ExtractDialog.h</DependentUpon>
290
      <SubType>Designer</SubType>
291
    </EmbeddedResource>
292
    <EmbeddedResource Include="src\Forms\FileExists.resx">
293
      <DependentUpon>src\Forms\FileExists.h</DependentUpon>
294
      <SubType>Designer</SubType>
295
    </EmbeddedResource>
296
    <EmbeddedResource Include="src\Forms\Form1.resx">
297
      <DependentUpon>src\Forms\Form1.h</DependentUpon>
298
      <SubType>Designer</SubType>
299
    </EmbeddedResource>
300
    <EmbeddedResource Include="src\Forms\PackageInfo.resx">
301
      <DependentUpon>src\Forms\PackageInfo.h</DependentUpon>
302
      <SubType>Designer</SubType>
303
    </EmbeddedResource>
304
    <EmbeddedResource Include="src\Forms\SpkForm.resx">
305
      <DependentUpon>src\Forms\SpkForm.h</DependentUpon>
306
      <SubType>Designer</SubType>
307
    </EmbeddedResource>
308
  </ItemGroup>
309
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
310
  <ImportGroup Label="ExtensionTargets">
311
  </ImportGroup>
312
</Project>