Linux multi-monitor fullscreen support
[ryzomcore.git] / nelDashBuild.cmd
blob4ed7c8b9b321d0c69e3deb34bd6ebc5dfc6b76ec
1 @echo off
2 # Default the source directory to the current directory.
3 set NEL_DIR=%CD%
4 set BUILDTYPE=Experimental
5 # Load the development environment. If you run MSVC2008 you may need to change this to VS90COMNTOOLS.
6 call "%VS80COMNTOOLS%vsvars32.bat"
8 if "%1" == "" (
9 rem No arguments were specified. Print out usage information.
10 echo Usage: %0 <Continuous|Experimental|Nightly> [c:\path\to\source]
11 exit /b
13 set BUILDTYPE=%1
15 if not "%2" == "" (
16 set NEL_DIR=%2
20 # Execute the build. If you run an Express version of MSVC you may need to change devenv to vcexpress.
21 devenv "%NEL_DIR%\build\NeL.sln" /build Debug /project %1%