-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcompile.msbuild.bat
More file actions
14 lines (10 loc) · 879 Bytes
/
compile.msbuild.bat
File metadata and controls
14 lines (10 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
rem https://docs.microsoft.com/en-us/cpp/build/walkthrough-using-msbuild-to-create-a-visual-cpp-project?view=msvc-160
rem compile all libs
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=Release /p:platform=x64
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=Debug /p:platform=x64
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=ReleaseMD /p:platform=x64
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=DebugMD /p:platform=x64
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=Release /p:platform=x86
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=Debug /p:platform=x86
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=ReleaseMD /p:platform=x86
msbuild VExDebugger/VExDebugger.vcxproj /t:Rebuild /p:configuration=DebugMD /p:platform=x86