You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.4 KiB
89 lines
3.4 KiB
8 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project 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">
|
||
|
<WindowsTargetPlatformVersion>10.0.14393.0</WindowsTargetPlatformVersion>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ImportGroup Label="PropertySheets">
|
||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||
|
</ImportGroup>
|
||
|
|
||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||
|
|
||
|
<PropertyGroup Label="Configuration">
|
||
|
<PlatformToolset>v141</PlatformToolset>
|
||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||
|
<CharacterSet>Unicode</CharacterSet>
|
||
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||
|
|
||
|
<ImportGroup Label="ExtensionSettings">
|
||
|
</ImportGroup>
|
||
|
<PropertyGroup Label="UserMacros" />
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutDir>$(SolutionDir)bin\$(Platform)\$(Configuration)\</OutDir>
|
||
|
<IntDir>$(SolutionDir)build\$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||
|
<IncludePath>$(IncludePath)</IncludePath>
|
||
|
<LibraryPath>$(SolutionDir)bin\$(Platform)\$(Configuration)\;$(SolutionDir)bin\$(Platform)\$(Configuration)\Plugins\;$(LibraryPath)</LibraryPath>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemDefinitionGroup>
|
||
|
<ClCompile>
|
||
|
<WarningLevel>Level3</WarningLevel>
|
||
|
<AdditionalIncludeDirectories>../Jupiter;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||
|
</ClCompile>
|
||
|
<Link>
|
||
|
<AdditionalDependencies>Jupiter.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||
|
</Link>
|
||
|
</ItemDefinitionGroup>
|
||
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
||
|
<ClCompile>
|
||
|
<Optimization>Full</Optimization>
|
||
|
</ClCompile>
|
||
|
<Link>
|
||
|
<OptimizeReferences>true</OptimizeReferences>
|
||
|
</Link>
|
||
|
</ItemDefinitionGroup>
|
||
|
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
|
||
|
<ClCompile>
|
||
|
<Optimization>Disabled</Optimization>
|
||
|
</ClCompile>
|
||
|
<Link>
|
||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||
|
</Link>
|
||
|
</ItemDefinitionGroup>
|
||
|
|
||
|
</Project>
|