-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildall.bat
63 lines (36 loc) · 924 Bytes
/
buildall.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
rem @echo off
@title "Bonjour for Windows - Rebuild all"
@echo "Bonjour for Windows - Rebuild all"
@echo:
@echo "Visual Studio 2022 Community required"
@echo:
rem MSBuild mDNSResponder.sln /t:Clean
@echo:
echo:
echo "Debug x86"
echo:
call build.bat
echo:
echo "Release x86"
echo:
MSBuild /nologo .\src\Shairport4w.vcxproj /t:Rebuild /p:Configuration=Release;Platform=x86
echo:
echo "Debug x64"
echo:
MSBuild /nologo .\src\Shairport4w.vcxproj /t:Rebuild /p:Configuration=Debug;Platform=x64
echo:
echo "Release x64"
echo:
MSBuild /nologo .\src\Shairport4w.vcxproj /t:Rebuild /p:Configuration=Release;Platform=x64
echo:
echo "Debug ARM64"
echo:
MSBuild /nologo .\src\Shairport4w.vcxproj /t:Rebuild /p:Configuration=Debug;Platform=x64
echo:
echo "Release ARM64"
echo:
MSBuild /nologo .\src\Shairport4w.vcxproj /t:Rebuild /p:Configuration=Release;Platform=x64
echo:
echo "Build finished."
echo:
pause