mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-12-26 11:17:44 +01:00
[build]: add build script for vc10-x86_64
git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@66 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
parent
a7f4bb2dd1
commit
66e3a56c0f
2 changed files with 22 additions and 0 deletions
14
build/vc10-x86_64/build-all.bat
Normal file
14
build/vc10-x86_64/build-all.bat
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
if "%VS120COMNTOOLS%" == "" (
|
||||
msg "%username%" "Visual Studio 12 not detected"
|
||||
exit 1
|
||||
)
|
||||
if not exist rk_mpp.sln (
|
||||
call make-solutions.bat
|
||||
)
|
||||
if exist rk_mpp.sln (
|
||||
call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat"
|
||||
rem MSBuild /property:Configuration="Release" rk_mpp.sln
|
||||
MSBuild /property:Configuration="Debug" rk_mpp.sln
|
||||
rem MSBuild /property:Configuration="RelWithDebInfo" rk_mpp.sln
|
||||
)
|
||||
8
build/vc10-x86_64/make-solutions.bat
Normal file
8
build/vc10-x86_64/make-solutions.bat
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
@echo off
|
||||
::
|
||||
:: run this batch file to create a Visual Studio solution file for this project.
|
||||
:: See the cmake documentation for other generator targets
|
||||
::
|
||||
cmake -G "Visual Studio 10 Win64" ../../ && cmake-gui ../../
|
||||
|
||||
::pause on
|
||||
Loading…
Add table
Add a link
Reference in a new issue