Skip to content

Commit

Permalink
Fix intermediate output path
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancorvussolis committed May 7, 2016
1 parent ebce948 commit c4bd393
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions installer/installer.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -138,31 +138,31 @@
<NMakeReBuildCommandLine>copy /y "config-lua\init.lua" "$(SolutionDir)$(Platform)\$(Configuration)\"</NMakeReBuildCommandLine>
<NMakePreprocessorDefinitions>WIN32;_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<OutDir>build\</OutDir>
<IntDir>$(IntermediateOutputPath)\</IntDir>
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<NMakeBuildCommandLine>copy /y "config-lua\init.lua" "$(SolutionDir)$(Platform)\$(Configuration)\"</NMakeBuildCommandLine>
<NMakeCleanCommandLine>del /f "$(SolutionDir)$(Platform)\$(Configuration)\init.lua"</NMakeCleanCommandLine>
<NMakeReBuildCommandLine>copy /y "config-lua\init.lua" "$(SolutionDir)$(Platform)\$(Configuration)\"</NMakeReBuildCommandLine>
<NMakePreprocessorDefinitions>WIN32;_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<OutDir>build\</OutDir>
<IntDir>$(IntermediateOutputPath)\</IntDir>
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<NMakePreprocessorDefinitions>WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<NMakeBuildCommandLine>echo build</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>echo rebuild</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>echo clean</NMakeCleanCommandLine>
<OutDir>build\</OutDir>
<IntDir>$(IntermediateOutputPath)\</IntDir>
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<NMakePreprocessorDefinitions>WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
<NMakeBuildCommandLine>echo build</NMakeBuildCommandLine>
<NMakeReBuildCommandLine>echo rebuild</NMakeReBuildCommandLine>
<NMakeCleanCommandLine>echo clean</NMakeCleanCommandLine>
<OutDir>build\</OutDir>
<IntDir>$(IntermediateOutputPath)\</IntDir>
<IntDir>obj\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup>
</ItemDefinitionGroup>
Expand Down

0 comments on commit c4bd393

Please sign in to comment.