diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-07-21 14:46:29 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-07-21 14:46:29 +0200 |
commit | 2ae76fcacfd36b421fa8ada4682c40996cc63d89 (patch) | |
tree | 79f62298e4323120b14355d44823ae7a8209ff7c /src/dirent | |
parent | c1f332f0a235662b18cc063776e295a6297b9d78 (diff) |
Add trailing backslashes to Output and Intermediate directories, make Visual Studio happy
Diffstat (limited to 'src/dirent')
-rw-r--r-- | src/dirent/dirent.vcxproj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dirent/dirent.vcxproj b/src/dirent/dirent.vcxproj index 7c41b01e..2586fe39 100644 --- a/src/dirent/dirent.vcxproj +++ b/src/dirent/dirent.vcxproj @@ -50,13 +50,13 @@ <PropertyGroup Label="UserMacros" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <TargetName>$(ProjectName)-win32</TargetName> - <OutDir>$(SolutionDir)build\$(PlatformName)\bin</OutDir> - <IntDir>$(SolutionDir)build\$(PlatformName)\obj\$(ProjectName)</IntDir> + <OutDir>$(SolutionDir)build\$(PlatformName)\bin\</OutDir> + <IntDir>$(SolutionDir)build\$(PlatformName)\obj\$(ProjectName)\</IntDir> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <TargetName>$(ProjectName)-win32</TargetName> - <OutDir>$(SolutionDir)build\$(PlatformName)\bin</OutDir> - <IntDir>$(SolutionDir)build\$(PlatformName)\obj\$(ProjectName)</IntDir> + <OutDir>$(SolutionDir)build\$(PlatformName)\bin\</OutDir> + <IntDir>$(SolutionDir)build\$(PlatformName)\obj\$(ProjectName)\</IntDir> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile> |