Skip to content

Commit 08ba4cd

Browse files
committed
Fix broken Makefile
1 parent 372d4bc commit 08ba4cd

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

Makefile

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
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+
19
build:
2-
build.bat Release build
10+
msbuild ${XML} ${Release} ${Arch_x64} ${PTS} /t:Build
11+
msbuild ${XML} ${Release} ${Arch_x86} ${PTS} /t:Build
312
debug:
4-
build.bat Debug build
13+
msbuild ${XML} ${Debug} ${Arch_x64} ${PTS} /t:Build
14+
msbuild ${XML} ${Debug} ${Arch_x86} ${PTS} /t:Build
515
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

0 commit comments

Comments
 (0)