aboutsummaryrefslogtreecommitdiff
path: root/src/burn
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-12-21 12:44:27 -0800
committerRob Mensching <rob@firegiant.com>2021-12-30 08:15:54 -0800
commit4cd4828e6225a2ff5e81002a7f6f7401570b21c4 (patch)
tree54acd62489f52661881372b6d22bf6e670017ef2 /src/burn
parent6d431a1488f770a0c2c753e2e3744fbb8d3eee0b (diff)
downloadwix-4cd4828e6225a2ff5e81002a7f6f7401570b21c4.tar.gz
wix-4cd4828e6225a2ff5e81002a7f6f7401570b21c4.tar.bz2
wix-4cd4828e6225a2ff5e81002a7f6f7401570b21c4.zip
Build simplification and parallelization
Diffstat (limited to 'src/burn')
-rw-r--r--src/burn/burn.cmd8
-rw-r--r--src/burn/burn_t.proj11
2 files changed, 12 insertions, 7 deletions
diff --git a/src/burn/burn.cmd b/src/burn/burn.cmd
index 10d56558..8c5010b5 100644
--- a/src/burn/burn.cmd
+++ b/src/burn/burn.cmd
@@ -12,13 +12,7 @@
12 12
13nuget restore || exit /b 13nuget restore || exit /b
14 14
15msbuild -t:Test -p:Configuration=%_C%;Platform=x86 test\BurnUnitTest || exit /b 15msbuild burn_t.proj -p:Configuration=%_C% -nologo -m -bl:..\..\build\logs\burn_build.binlog || exit /b
16
17msbuild -t:Build -p:Configuration=%_C%;Platform=x86 || exit /b
18msbuild -t:Build -p:Configuration=%_C%;Platform=x64 || exit /b
19msbuild -t:Build -p:Configuration=%_C%;Platform=arm64 || exit /b
20
21msbuild -t:PackNative -p:Configuration=%_C% stub\stub.vcxproj || exit /b
22 16
23@popd 17@popd
24@endlocal 18@endlocal
diff --git a/src/burn/burn_t.proj b/src/burn/burn_t.proj
new file mode 100644
index 00000000..0eed26ed
--- /dev/null
+++ b/src/burn/burn_t.proj
@@ -0,0 +1,11 @@
1<Project Sdk="Microsoft.Build.Traversal">
2 <ItemGroup>
3 <ProjectReference Include="test\BurnUnitTest\BurnUnitTest.vcxproj" Targets="Test" />
4
5 <ProjectReference Include="burn.sln" Properties="Platform=x86" />
6 <ProjectReference Include="burn.sln" Properties="Platform=x64" />
7 <ProjectReference Include="burn.sln" Properties="Platform=ARM64" />
8
9 <ProjectReference Include="stub\stub.vcxproj" Targets="PackNative" />
10 </ItemGroup>
11</Project>