Update respack project

This commit is contained in:
Thomas Goyne 2012-11-01 07:46:38 -07:00
parent c2510b1ef0
commit 98cf1b7350
2 changed files with 11 additions and 17 deletions

View file

@ -33,7 +33,7 @@
--> -->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<ResPackExe Condition="'$(ResPackExe)' == ''">$(MSBuildThisFileDirectory)respack.exe</ResPackExe> <ResPackExe Condition="'$(ResPackExe)' == ''">$(AegisubBinaryDir)respack$(AegisubPlatformSuffix).exe</ResPackExe>
</PropertyGroup> </PropertyGroup>
<Target <Target

View file

@ -15,12 +15,7 @@
<ProjectGuid>{08AF2BCC-FCDD-4F0E-8B41-59A6E634F2E8}</ProjectGuid> <ProjectGuid>{08AF2BCC-FCDD-4F0E-8B41-59A6E634F2E8}</ProjectGuid>
<RootNamespace>respack</RootNamespace> <RootNamespace>respack</RootNamespace>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<!-- Aegisub project configuration --> <!-- Aegisub project configuration -->
<PropertyGroup Label="AegisubConfiguration"> <PropertyGroup Label="AegisubConfiguration">
<AegisubProjectType>exe</AegisubProjectType> <AegisubProjectType>exe</AegisubProjectType>
@ -28,25 +23,24 @@
<ImportGroup Label="PropertySheets"> <ImportGroup Label="PropertySheets">
<Import Project="$(MSBuildThisFileDirectory)..\aegisub.props" /> <Import Project="$(MSBuildThisFileDirectory)..\aegisub.props" />
</ImportGroup> </ImportGroup>
<!-- Project specific configuration --> <!-- Project specific configuration -->
<PropertyGroup> <PropertyGroup>
<OutDir>$(ProjectDir)</OutDir> <OutDir>$(ProjectDir)</OutDir>
<TargetName>respack</TargetName> <TargetName>respack$(AegisubPlatformSuffix)</TargetName>
<TargetName Condition="'$(Platform)'=='x64'">%(TargetName)64</TargetName> <PlatformToolset>v110</PlatformToolset>
<TargetName Condition="'$(Configuration)'=='Debug'">%(TargetName)d</TargetName>
</PropertyGroup> </PropertyGroup>
<ItemDefinitionGroup> <ItemDefinitionGroup>
<ClCompile> <ClCompile>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile> </ClCompile>
<Link> <Link>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)$(TargetName).pdb</ProgramDatabaseFile>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>
</Link> </Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<!-- Source file --> <!-- Source file -->
<ItemGroup> <ItemGroup>
<ClCompile Include="..\..\..\tools\common-respack.cpp" /> <ClCompile Include="..\..\tools\common-respack.cpp" />
</ItemGroup> </ItemGroup>
</Project> </Project>