Skip to content
This repository was archived by the owner on Jan 28, 2023. It is now read-only.

Commit 36564bb

Browse files
authored
Merge pull request #134 from kryptoslogic/tests-config
Generate tests in configuration subfolder
2 parents 226b5a8 + 193da55 commit 36564bb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ matrix:
4848
- export PROPS="//p:DefaultWindowsSDKVersion=10.0.17763.0 //p:SpectreMitigation=false"
4949
- MSBuild.exe haxm.sln $PROPS //p:Configuration="Debug" //p:Platform="Win32"
5050
- MSBuild.exe haxm.sln $PROPS //p:Configuration="Debug" //p:Platform="x64"
51-
- build/tests/x64/haxm-tests.exe
51+
- build/tests/x64/Debug/haxm-tests.exe

platforms/windows/haxm-core.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
</ImportGroup>
7171
<PropertyGroup Label="UserMacros" />
7272
<PropertyGroup Label="Configuration">
73-
<OutDir>$(SolutionDir)build\core\$(Platform)\$(ConfigurationName)\</OutDir>
74-
<IntDir>$(SolutionDir)build\intermediates\$(ProjectName)\$(Platform)\$(ConfigurationName)\</IntDir>
73+
<OutDir>$(SolutionDir)build\core\$(Platform)\$(Configuration)\</OutDir>
74+
<IntDir>$(SolutionDir)build\intermediates\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
7575
</PropertyGroup>
7676
<!-- The WrappedTaskItems label is used by the conversion tool to identify the location where items
7777
associated with wrapped tasks will reside.-->

platforms/windows/haxm-tests.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
3737
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
3838
<PropertyGroup Label="Configuration">
39-
<OutDir>$(SolutionDir)build\tests\$(Platform)\$(ConfigurationName)\</OutDir>
40-
<IntDir>$(SolutionDir)build\intermediates\$(ProjectName)\$(Platform)\$(ConfigurationName)\</IntDir>
39+
<OutDir>$(SolutionDir)build\tests\$(Platform)\$(Configuration)\</OutDir>
40+
<IntDir>$(SolutionDir)build\intermediates\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
4141
</PropertyGroup>
4242
<ItemGroup>
4343
<ClCompile Include="..\..\tests\test_emulator.cpp" />

platforms/windows/haxm-windows.vcxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@
7272
</ImportGroup>
7373
<PropertyGroup Label="UserMacros" />
7474
<PropertyGroup Label="Configuration">
75-
<OutDir>$(SolutionDir)build\out\$(Platform)\$(ConfigurationName)\</OutDir>
76-
<IntDir>$(SolutionDir)build\intermediates\$(ProjectName)\$(Platform)\$(ConfigurationName)\</IntDir>
75+
<OutDir>$(SolutionDir)build\out\$(Platform)\$(Configuration)\</OutDir>
76+
<IntDir>$(SolutionDir)build\intermediates\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
7777
</PropertyGroup>
7878
<ItemDefinitionGroup>
7979
<Link>
80-
<AdditionalDependencies>$(SolutionDir)build\core\$(Platform)\$(ConfigurationName)\haxlib.lib;$(DDK_LIB_PATH)wdmsec.lib;%(AdditionalDependencies)</AdditionalDependencies>
80+
<AdditionalDependencies>$(SolutionDir)build\core\$(Platform)\$(Configuration)\haxlib.lib;$(DDK_LIB_PATH)wdmsec.lib;%(AdditionalDependencies)</AdditionalDependencies>
8181
</Link>
8282
<ClCompile>
8383
<SDLCheck>true</SDLCheck>

0 commit comments

Comments
 (0)