cmake/build.bat: update the script to Git and use Peter's suggestions

This commit is contained in:
Uwe Stöhr 2012-03-16 02:19:49 +01:00
parent 729fa7c253
commit b1bb04d244

View File

@ -26,9 +26,9 @@ REM Add path to qmake here or set PATH correctly on your system.
set PATH=D:\Qt\bin;%PATH% set PATH=D:\Qt\bin;%PATH%
REM Edit pathes here or set the environment variables on you system. REM Edit pathes here or set the environment variables on you system.
set GNUWIN32_DIR=D:\LyXSVN\lyx-devel\lyx-windows-deps-msvc2008 set GNUWIN32_DIR=D:\LyXGit\2.0.x\lyx-windows-deps-msvc2010
set LYX_SOURCE=D:\LyXSVN\lyx-devel set LYX_SOURCE=D:\LyXGit\2.0.x
set LYX_BUILD=D:\LyXSVN\lyx-devel\compile-result set LYX_BUILD=D:\LyXGit\2.0.x\compile-result
if [%LYX_BUILD%]==[] ( if [%LYX_BUILD%]==[] (
echo ERROR: LYX_BUILD not set. echo ERROR: LYX_BUILD not set.
@ -67,11 +67,11 @@ cd "%LYX_BUILD%"
REM Delete all files indirectory REM Delete all files indirectory
del /s/q * ::del /s/q *
del CMakeCache.txt del CMakeCache.txt
if [%2]==[] ( if [%2]==[] (
set USED_STUDIO="Visual Studio 9 2008" set USED_STUDIO="Visual Studio 10"
) else ( ) else (
set USED_STUDIO=%2% set USED_STUDIO=%2%
) )
@ -79,18 +79,21 @@ if [%2]==[] (
if "%1%" == "devel" ( if "%1%" == "devel" (
REM Build solution to develop LyX REM Build solution to develop LyX
cmake %LYX_SOURCE%\development\cmake -G%USED_STUDIO% -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_RELEAE=0 cmake %LYX_SOURCE%\development\cmake -G%USED_STUDIO% -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_RELEASE=0
REM needed when running lyx from the debugger REM needed when running lyx from the debugger
set LYX_DIR_20x=%LYX_SOURCE%\lib set LYX_DIR_20x=%LYX_SOURCE%\lib
start lyx.sln /build Debug ::start lyx.sln /build Debug
msbuild lyx.sln /p:Configuration=Debug /t:LyX /t:tex2lyx
) )
if "%1%" == "install" ( if "%1%" == "install" (
REM Build solution to develop LyX REM Build solution to develop LyX
cmake %LYX_SOURCE%\development\cmake -G%USED_STUDIO% -DLYX_MERGE_FILES=1 -DLYX_INSTALL=1 -DLYX_RELEASE=1 cmake %LYX_SOURCE%\development\cmake -G%USED_STUDIO% -DLYX_MERGE_FILES=1 -DLYX_INSTALL=1 -DLYX_RELEASE=1 -DLYX_CONSOLE=OFF
REM needed when running lyx from the debugger REM needed when running lyx from the debugger
set LYX_DIR_20x= set LYX_DIR_20x=
start lyx.sln /build Debug ::start lyx.sln /build Debug
msbuild lyx.sln /p:Configuration=Release /t:ALL_BUILD
msbuild INSTALL.vcxproj /p:Configuration=Release
) )
if "%1%" == "deploy" ( if "%1%" == "deploy" (