File tree 1 file changed +16
-4
lines changed
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change
1
+ PlatformToolset =v141
2
+ XML =build.xml
3
+ Release=/p:Configuration =Release
4
+ Debug=/p:Configuration =Debug
5
+ Arch_x64=/p:Platform =x64
6
+ Arch_x86=/p:Platform =x86
7
+ PTS=/p:PlatformToolset =v141
8
+
1
9
build :
2
- build.bat Release build
10
+ msbuild ${XML} ${Release} ${Arch_x64} ${PTS} /t:Build
11
+ msbuild ${XML} ${Release} ${Arch_x86} ${PTS} /t:Build
3
12
debug :
4
- build.bat Debug build
13
+ msbuild ${XML} ${Debug} ${Arch_x64} ${PTS} /t:Build
14
+ msbuild ${XML} ${Debug} ${Arch_x86} ${PTS} /t:Build
5
15
clean :
6
- build.bat Release clean
7
- build.bat Debug clean
16
+ msbuild ${XML} ${Release} ${Arch_x64} ${PTS} /t:Clean
17
+ msbuild ${XML} ${Debug} ${Arch_x64} ${PTS} /t:Clean
18
+ msbuild ${XML} ${Release} ${Arch_x86} ${PTS} /t:Clean
19
+ msbuild ${XML} ${Debug} ${Arch_x86} ${PTS} /t:Clean
You can’t perform that action at this time.
0 commit comments