-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathbuildall.cmd
19 lines (19 loc) · 1.13 KB
/
buildall.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off
echo "==================== PSF x86 DEBUG ================================="
msbuild CentennialFixups.sln /p:platform=x86;configuration=debug
echo "==================== PSF x86 RELEASE ================================="
msbuild CentennialFixups.sln /p:platform=x86;configuration=release
echo "==================== PSF x64 DEBUG ================================="
msbuild CentennialFixups.sln /p:platform=x64;configuration=debug
echo "==================== PSF x64 RELEASE ================================="
msbuild CentennialFixups.sln /p:platform=x64;configuration=release
pushd tests
echo "==================== TEST x86 DEBUG ================================="
msbuild tests.sln /p:platform=x86;configuration=debug
echo "==================== TEST x86 RELEASE ================================="
msbuild tests.sln /p:platform=x86;configuration=release
echo "==================== TEST x64 DEBUG ================================="
msbuild tests.sln /p:platform=x64;configuration=debug
echo "==================== TEST x64 RELEASE ================================="
msbuild tests.sln /p:platform=x64;configuration=release
popd