2011-08-24 08:14:56 +02:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
cd %~dp0
|
|
|
|
|
|
|
|
if /i "%1"=="help" goto help
|
|
|
|
if /i "%1"=="--help" goto help
|
|
|
|
if /i "%1"=="-help" goto help
|
|
|
|
if /i "%1"=="/help" goto help
|
|
|
|
if /i "%1"=="?" goto help
|
|
|
|
if /i "%1"=="-?" goto help
|
|
|
|
if /i "%1"=="--?" goto help
|
|
|
|
if /i "%1"=="/?" goto help
|
|
|
|
|
|
|
|
@rem Process arguments.
|
|
|
|
set config=Debug
|
|
|
|
set target=Build
|
|
|
|
set noprojgen=
|
2011-08-27 00:04:47 +02:00
|
|
|
set nobuild=
|
|
|
|
set test=
|
|
|
|
set test_args=
|
2011-08-24 08:14:56 +02:00
|
|
|
|
|
|
|
:next-arg
|
|
|
|
if "%1"=="" goto args-done
|
|
|
|
if /i "%1"=="debug" set config=Debug&goto arg-ok
|
|
|
|
if /i "%1"=="release" set config=Release&goto arg-ok
|
|
|
|
if /i "%1"=="clean" set target=Clean&goto arg-ok
|
|
|
|
if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok
|
2011-08-27 00:04:47 +02:00
|
|
|
if /i "%1"=="nobuild" set nobuild=1&goto arg-ok
|
|
|
|
if /i "%1"=="test-uv" set test=test-uv&goto arg-ok
|
|
|
|
if /i "%1"=="test-internet"set test=test-internet&goto arg-ok
|
|
|
|
if /i "%1"=="test-pummel" set test=test-pummel&goto arg-ok
|
|
|
|
if /i "%1"=="test-simple" set test=test-simple&goto arg-ok
|
|
|
|
if /i "%1"=="test-message" set test=test-message&goto arg-ok
|
|
|
|
if /i "%1"=="test-all" set test=test-all&goto arg-ok
|
|
|
|
if /i "%1"=="test" set test=test&goto arg-ok
|
2011-08-24 08:14:56 +02:00
|
|
|
:arg-ok
|
|
|
|
shift
|
|
|
|
goto next-arg
|
|
|
|
:args-done
|
|
|
|
|
|
|
|
|
2011-08-27 00:04:47 +02:00
|
|
|
:project-gen
|
2011-08-24 08:14:56 +02:00
|
|
|
@rem Skip project generation if requested.
|
|
|
|
if defined noprojgen goto msbuild
|
|
|
|
|
|
|
|
@rem Generate the VS project.
|
2011-08-27 00:04:47 +02:00
|
|
|
python tools\gyp_node -f msvs -G msvs_version=2010
|
2011-08-24 08:14:56 +02:00
|
|
|
if errorlevel 1 goto create-msvs-files-failed
|
|
|
|
if not exist node.sln goto create-msvs-files-failed
|
2011-08-27 00:04:47 +02:00
|
|
|
echo Project files generated.
|
2011-08-24 08:14:56 +02:00
|
|
|
|
|
|
|
:msbuild
|
2011-08-27 00:04:47 +02:00
|
|
|
@rem Skip project generation if requested.
|
|
|
|
if defined nobuild goto run
|
|
|
|
|
2011-09-05 00:35:42 +02:00
|
|
|
@rem Bail out early if not running in VS build env.
|
|
|
|
if defined VCINSTALLDIR goto msbuild-found
|
|
|
|
if not defined VS100COMNTOOLS goto msbuild-not-found
|
|
|
|
if not exist "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-not-found
|
|
|
|
call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat"
|
|
|
|
if not defined VCINSTALLDIR goto msbuild-not-found
|
|
|
|
goto msbuild-found
|
2011-08-27 00:04:47 +02:00
|
|
|
|
2011-09-05 00:35:42 +02:00
|
|
|
:msbuild-not-found
|
|
|
|
echo Build skipped. To build, this file needs to run from VS cmd prompt.
|
|
|
|
goto run
|
|
|
|
|
|
|
|
:msbuild-found
|
2011-08-24 08:14:56 +02:00
|
|
|
@rem Build the sln with msbuild.
|
|
|
|
msbuild node.sln /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
|
|
|
|
if errorlevel 1 goto exit
|
2011-08-27 00:04:47 +02:00
|
|
|
|
|
|
|
:run
|
|
|
|
@rem Run tests if requested.
|
|
|
|
if "%test%"=="" goto exit
|
|
|
|
|
|
|
|
if "%config%"=="Debug" set test_args=--mode=debug
|
|
|
|
if "%config%"=="Release" set test_args=--mode=release
|
|
|
|
|
|
|
|
if "%test%"=="test" set test_args=%test_args% simple message
|
|
|
|
if "%test%"=="test-uv" set test_args=%test_args% --libuv simple
|
|
|
|
if "%test%"=="test-internet" set test_args=%test_args% internet
|
|
|
|
if "%test%"=="test-pummel" set test_args=%test_args% pummel
|
|
|
|
if "%test%"=="test-simple" set test_args=%test_args% simple
|
|
|
|
if "%test%"=="test-message" set test_args=%test_args% message
|
|
|
|
if "%test%"=="test-all" set test_args=%test_args%
|
|
|
|
|
|
|
|
echo running 'python tools/test.py %test_args%'
|
|
|
|
python tools/test.py %test_args%
|
2011-08-24 08:14:56 +02:00
|
|
|
goto exit
|
|
|
|
|
|
|
|
:create-msvs-files-failed
|
|
|
|
echo Failed to create vc project files.
|
|
|
|
goto exit
|
|
|
|
|
|
|
|
:help
|
2011-08-27 00:04:47 +02:00
|
|
|
echo vcbuild.bat [debug/release] [test-all/test-uv/test-internet/test-pummel/test-simple/test-message] [clean] [noprojgen] [nobuild]
|
2011-08-24 08:14:56 +02:00
|
|
|
echo Examples:
|
2011-08-27 00:04:47 +02:00
|
|
|
echo vcbuild.bat : builds debug build
|
|
|
|
echo vcbuild.bat test : builds debug build and runs tests
|
|
|
|
echo vcbuild.bat release test-uv: builds release build and runs --libuv tests
|
2011-08-24 08:14:56 +02:00
|
|
|
goto exit
|
|
|
|
|
|
|
|
:exit
|