Visual Studio: separate build and intermediate files directories.

It is a lot cleaner to direct intermediate files to separate folders and only executables to the build folder.
This commit is contained in:
Kimmo Varis 2009-03-09 19:58:38 +02:00
parent db0ec0502c
commit b3923b72ad
1 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<VisualStudioProject <VisualStudioProject
ProjectType="Visual C++" ProjectType="Visual C++"
Version="9,00" Version="9.00"
Name="cppcheck" Name="cppcheck"
ProjectGUID="{ECA5D746-4926-48BA-A372-FC888498531F}" ProjectGUID="{ECA5D746-4926-48BA-A372-FC888498531F}"
Keyword="Win32Proj" Keyword="Win32Proj"
@ -17,8 +17,8 @@
<Configurations> <Configurations>
<Configuration <Configuration
Name="Debug|Win32" Name="Debug|Win32"
OutputDirectory="Debug" OutputDirectory="Build\Debug"
IntermediateDirectory="Debug" IntermediateDirectory="BuildTmp\Debug"
ConfigurationType="1" ConfigurationType="1"
> >
<Tool <Tool
@ -88,8 +88,8 @@
</Configuration> </Configuration>
<Configuration <Configuration
Name="Release|Win32" Name="Release|Win32"
OutputDirectory="Release" OutputDirectory="Build\Release"
IntermediateDirectory="Release" IntermediateDirectory="BuildTmp\Release"
ConfigurationType="1" ConfigurationType="1"
> >
<Tool <Tool