mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
cmake/build.bat: update the script to Git and use Peter's suggestions
This commit is contained in:
parent
729fa7c253
commit
b1bb04d244
@ -26,9 +26,9 @@ REM Add path to qmake here or set PATH correctly on your system.
|
||||
set PATH=D:\Qt\bin;%PATH%
|
||||
|
||||
REM Edit pathes here or set the environment variables on you system.
|
||||
set GNUWIN32_DIR=D:\LyXSVN\lyx-devel\lyx-windows-deps-msvc2008
|
||||
set LYX_SOURCE=D:\LyXSVN\lyx-devel
|
||||
set LYX_BUILD=D:\LyXSVN\lyx-devel\compile-result
|
||||
set GNUWIN32_DIR=D:\LyXGit\2.0.x\lyx-windows-deps-msvc2010
|
||||
set LYX_SOURCE=D:\LyXGit\2.0.x
|
||||
set LYX_BUILD=D:\LyXGit\2.0.x\compile-result
|
||||
|
||||
if [%LYX_BUILD%]==[] (
|
||||
echo ERROR: LYX_BUILD not set.
|
||||
@ -67,11 +67,11 @@ cd "%LYX_BUILD%"
|
||||
|
||||
|
||||
REM Delete all files indirectory
|
||||
del /s/q *
|
||||
::del /s/q *
|
||||
del CMakeCache.txt
|
||||
|
||||
if [%2]==[] (
|
||||
set USED_STUDIO="Visual Studio 9 2008"
|
||||
set USED_STUDIO="Visual Studio 10"
|
||||
) else (
|
||||
set USED_STUDIO=%2%
|
||||
)
|
||||
@ -79,18 +79,21 @@ if [%2]==[] (
|
||||
|
||||
if "%1%" == "devel" (
|
||||
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
|
||||
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" (
|
||||
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
|
||||
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" (
|
||||
|
Loading…
Reference in New Issue
Block a user