mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-06-14 03:16:38 +10:00
714c98130a
Put common build settings into separate props file. This way it will be much easier to do changes that should affect all projects in the future.
104 lines
4.0 KiB
XML
104 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="15.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>{D42FE717-485B-492D-884A-1999F6D51154}</ProjectGuid>
|
|
<RootNamespace>Lib</RootNamespace>
|
|
<Keyword>Win32Proj</Keyword>
|
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
<PropertyGroup Label="Configuration">
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
|
<UseOfAtl>Static</UseOfAtl>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
<WholeProgramOptimization Condition="'$(Configuration)'!='Debug'">true</WholeProgramOptimization>
|
|
</PropertyGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
<ImportGroup Label="ExtensionSettings">
|
|
</ImportGroup>
|
|
<ImportGroup Label="PropertySheets">
|
|
<Import Project="..\Common.props" />
|
|
</ImportGroup>
|
|
<PropertyGroup Label="UserMacros" />
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
</ClCompile>
|
|
<Lib>
|
|
<TargetMachine Condition="'$(Platform)'=='Win32'">MachineX86</TargetMachine>
|
|
</Lib>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup>
|
|
<Image Include="..\Setup\OpenShell.ico" />
|
|
<Image Include="flags.bmp" />
|
|
<Image Include="flags24.bmp" />
|
|
<Image Include="padlock.ico" />
|
|
<Image Include="play.ico" />
|
|
<Image Include="warning.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ResourceCompile Include="Lib.rc" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClInclude Include="Assert.h" />
|
|
<ClInclude Include="ComHelper.h" />
|
|
<ClInclude Include="DownloadHelper.h" />
|
|
<ClInclude Include="FileHelper.h" />
|
|
<ClInclude Include="FNVHash.h" />
|
|
<ClInclude Include="IatHookHelper.h" />
|
|
<ClInclude Include="LanguageSettingsHelper.h" />
|
|
<ClInclude Include="resource.h" />
|
|
<ClInclude Include="ResourceHelper.h" />
|
|
<ClInclude Include="Settings.h" />
|
|
<ClInclude Include="SettingsParser.h" />
|
|
<ClInclude Include="SettingsUIHelper.h" />
|
|
<ClInclude Include="stdafx.h" />
|
|
<ClInclude Include="StringSet.h" />
|
|
<ClInclude Include="StringUtils.h" />
|
|
<ClInclude Include="targetver.h" />
|
|
<ClInclude Include="TrackResources.h" />
|
|
<ClInclude Include="Translations.h" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ClCompile Include="Assert.cpp" />
|
|
<ClCompile Include="DownloadHelper.cpp" />
|
|
<ClCompile Include="FileHelper.cpp" />
|
|
<ClCompile Include="FNVHash.cpp" />
|
|
<ClCompile Include="IatHookHelper.cpp" />
|
|
<ClCompile Include="Instance.cpp" />
|
|
<ClCompile Include="LanguageSettingsHelper.cpp" />
|
|
<ClCompile Include="ResourceHelper.cpp" />
|
|
<ClCompile Include="Settings.cpp" />
|
|
<ClCompile Include="SettingsParser.cpp" />
|
|
<ClCompile Include="SettingsUIHelper.cpp" />
|
|
<ClCompile Include="stdafx.cpp">
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
|
</ClCompile>
|
|
<ClCompile Include="StringSet.cpp" />
|
|
<ClCompile Include="StringUtils.cpp" />
|
|
<ClCompile Include="TrackResources.cpp" />
|
|
<ClCompile Include="Translations.cpp" />
|
|
</ItemGroup>
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
<ImportGroup Label="ExtensionTargets">
|
|
</ImportGroup>
|
|
</Project> |