diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-02 18:15:49 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-02 18:15:49 +0200 |
commit | 567270d5a713d7b9dd3e2f89aaab5b07db4fb55c (patch) | |
tree | e5613b577cf3d2e93673f615518ad08df721d194 /src/dirent | |
parent | 24aad3fecf19cae220cf0459d9f130eee0b2e173 (diff) |
Remove hardcoding as much as possible
Diffstat (limited to 'src/dirent')
-rw-r--r-- | src/dirent/dirent-xp.vcxproj | 8 | ||||
-rw-r--r-- | src/dirent/dirent.vcxproj | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/dirent/dirent-xp.vcxproj b/src/dirent/dirent-xp.vcxproj index 0df2bf7e..5159f76f 100644 --- a/src/dirent/dirent-xp.vcxproj +++ b/src/dirent/dirent-xp.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>$(HexChatBin)</OutDir> + <IntDir>$(SolutionDir)build\$(HexChatObj)$(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>$(HexChatBin)</OutDir> + <IntDir>$(SolutionDir)build\$(HexChatObj)$(ProjectName)\</IntDir> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile> diff --git a/src/dirent/dirent.vcxproj b/src/dirent/dirent.vcxproj index 4e985a64..35624428 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>$(HexChatBin)</OutDir> + <IntDir>$(SolutionDir)build\$(HexChatObj)$(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>$(HexChatBin)</OutDir> + <IntDir>$(SolutionDir)build\$(HexChatObj)$(ProjectName)\</IntDir> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ClCompile> |