]> git.lyx.org Git - lyx.git/blob - development/cmake/build5-2010.bat
add 2 Windows build scripts for LyX 2.2
[lyx.git] / development / cmake / build5-2010.bat
1 echo off
2
3 echo -------------------------------------------------------------------------------------
4 echo -
5 echo Usage build.bat devel/install/deploy STUDIO(optional)
6 echo     devel   - Builds Visual Studio project files for development on LyX
7 echo     install - Builds Visual Studio project files with all enabled for installation
8 echo     STUDIO  - Used Visual Studio version, default is "Visual Studio 10"
9 echo               use "Visual Studio 9 2008" for Visual Studio 9
10 echo
11 echo -------------------------------------------------------------------------------------
12 echo -
13 echo Call this script from a build directory or set variables (or edit this file)
14 echo     LYX_SOURCE
15 echo     LXY_BUILD
16 echo
17 echo Be sure you've set qmake in PATH.
18 echo -
19 echo GNUWin32 will be downloaded if you don't set the variable GNUWIN32_DIR
20 echo -------------------------------------------------------------------------------------
21 echo -
22 echo -
23
24 if [%1]==[] (
25         echo ERROR: no options.
26     echo Exiting now.
27         goto :eof
28 )
29
30 REM Uncomment the following line if you want to compile in parallel.
31 REM This uses N cl.exe processes, where N is the number of cores.
32 set CL=/MP
33
34 REM Save path
35 set CALLED_FROM=%CD%
36
37 REM Add path to qmake here or set PATH correctly on your system.
38 set PATH=C:\Qt\Qt5-5-1-2010\5.5\msvc2010\bin;%PATH%
39
40 REM Edit pathes here or set the environment variables on you system.
41 set GNUWIN32_DIR=D:\LyXGit\Master\lyx-windows-deps-msvc2010
42 set LYX_SOURCE=D:\LyXGit\Master\
43 set LYX_BUILD=D:\LyXGit\Master\compile-2010
44
45 if [%LYX_SOURCE%]==[] (
46         set LYX_SOURCE=%~DP0\..\..
47 )
48 echo LyX source: "%LYX_SOURCE%"
49
50 if [%LYX_BUILD%]==[] (
51         set LYX_BUILD=%CD%
52 )
53 echo LyX build : "%LYX_BUILD%"
54
55 if [%GNUWIN32_DIR%]==[] (
56         echo GNUWIN32_DIR not set.
57         echo Downloading win32 deps.
58         set DEPENDENCIES_DOWNLOAD="-DLYX_DEPENDENCIES_DOWNLOAD=1"
59 ) else set PATH="%GNUWIN32_DIR%\bin";%PATH%
60
61 if not exist %LYX_BUILD% (
62         echo creating "%LYX_BUILD%"
63         mkdir "%LYX_BUILD%"
64         if not exist %LYX_BUILD% (
65                 echo Exiting script.
66                 goto :eof
67         )
68 )
69
70 cd "%LYX_BUILD%"
71
72 REM start with a new cmake run
73 ::del CMakeCache.txt
74
75 if [%2]==[] (
76         set USED_STUDIO="Visual Studio 10"
77 ) else (
78         set USED_STUDIO=%2%
79 )
80
81
82 if "%1%" == "devel" (
83         REM Build solution to develop LyX
84         REM you can add the option "-GNinja" for a faster compilation
85         cmake %LYX_SOURCE% -GNinja -G%USED_STUDIO% -DLYX_ENABLE_CXX11=ON -DLYX_USE_QT=QT5 -DLYX_ENABLE_EXPORT_TESTS=ON -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_INSTALL=0 -DLYX_RELEASE=0 -DLYX_CONSOLE=FORCE -LYX_3RDPARTY_BUILD=1 %DEPENDENCIES_DOWNLOAD%
86         msbuild lyx.sln /p:Configuration=Debug /t:LyX /t:tex2lyx
87 )
88
89 if "%1%" == "install" (
90         REM Build solution to develop LyX
91         REM set -DLYX_MERGE_REBUILD and -DLYX_MERGE_FILES to 1 for a version released with an installer
92         cmake %LYX_SOURCE% -GNinja -G%USED_STUDIO% -DLYX_ENABLE_CXX11=ON -DLYX_USE_QT=QT5 -DLYX_MERGE_REBUILD=0 -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_INSTALL=1 -DLYX_RELEASE=1 -DLYX_CONSOLE=OFF %DEPENDENCIES_DOWNLOAD%
93         msbuild lyx.sln         /p:Configuration=Release /t:ALL_BUILD
94         msbuild INSTALL.vcxproj /p:Configuration=Release
95 )
96
97 REM go back to the dir where the script was called from
98 cd /D %CALLED_FROM%
99
100 :eof