Skip to content

Commit f5bb0d0

Browse files
committed
Put intermediate and output files for x86 into x86 dir.
1 parent c5c2272 commit f5bb0d0

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.vs/*
22
.DS_Store
3-
Win32/*
3+
x86/*
44
x64/*
55
*.vtcache
66
*.user

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ configuration:
33
- Debug
44
- Release
55
platform:
6-
- Win32
6+
- x86
77
- x64
88
build:
99
project: hexed.sln
10-
verbosity: detailed
10+
verbosity: minimal
1111
artifacts:
1212
- path: $(PLATFORM)\$(CONFIGURATION)\hexed.exe
1313
name: hexed-deploy

hexed.vcxproj

+8-4
Original file line numberDiff line numberDiff line change
@@ -98,19 +98,23 @@
9898
<PropertyGroup Label="UserMacros" />
9999
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
100100
<LinkIncremental>true</LinkIncremental>
101-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
102-
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
101+
<IntDir>$(PlatformShortName)\$(Configuration)\</IntDir>
102+
<OutDir>$(SolutionDir)$(PlatformShortName)\$(Configuration)\</OutDir>
103103
</PropertyGroup>
104104
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
105105
<LinkIncremental>true</LinkIncremental>
106+
<OutDir>$(SolutionDir)$(PlatformShortName)\$(Configuration)\</OutDir>
107+
<IntDir>$(PlatformShortName)\$(Configuration)\</IntDir>
106108
</PropertyGroup>
107109
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
108110
<LinkIncremental>false</LinkIncremental>
109-
<IntDir>$(Platform)\$(Configuration)\</IntDir>
110-
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
111+
<IntDir>$(PlatformShortName)\$(Configuration)\</IntDir>
112+
<OutDir>$(SolutionDir)$(PlatformShortName)\$(Configuration)\</OutDir>
111113
</PropertyGroup>
112114
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
113115
<LinkIncremental>false</LinkIncremental>
116+
<OutDir>$(SolutionDir)$(PlatformShortName)\$(Configuration)\</OutDir>
117+
<IntDir>$(PlatformShortName)\$(Configuration)\</IntDir>
114118
</PropertyGroup>
115119
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
116120
<ClCompile>

0 commit comments

Comments
 (0)