]> git.lyx.org Git - lyx.git/blob - development/cmake/build.bat
listerrors.lyx : Update a link.
[lyx.git] / development / cmake / build.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     deploy  - Builds Makefiles and installs LyX
9 echo     STUDIO  - Used Visual Studio version, default is "Visual Studio 10"
10 echo               use "Visual Studio 9 2008" for Visual Studio 9
11 echo
12 echo -------------------------------------------------------------------------------------
13 echo -
14 echo Call this script from a build directory or set variables (or edit this file)
15 echo     LYX_SOURCE
16 echo     LXY_BUILD
17 echo
18 echo Be sure you've set qmake in PATH.
19 echo -
20 echo GNUWin32 will be downloaded if you don't set the variable GNUWIN32_DIR
21 echo -------------------------------------------------------------------------------------
22 echo -
23 echo -
24
25 if [%1]==[] (
26         echo ERROR: no options.
27     echo Exiting now.
28         goto :eof
29 )
30
31 REM Save path
32 set CALLED_FROM=%CD%
33
34
35 REM Add path to qmake here or set PATH correctly on your system.
36 set PATH="D:\Qt\bin";%PATH%
37
38 REM Edit pathes here or set the environment variables on you system.
39 ::set GNUWIN32_DIR=D:\LyXSVN\lyx-devel\lyx-windows-deps-msvc2010
40 ::set LYX_SOURCE=D:\LyXSVN\lyx-devel
41 ::set LYX_BUILD=D:\LyXSVN\lyx-devel\compile-result
42
43 if [%LYX_SOURCE%]==[] (
44         set LYX_SOURCE=%~DP0\..\..
45 )
46 echo LyX source: "%LYX_SOURCE%"
47
48 if [%LYX_BUILD%]==[] (
49         set LYX_BUILD=%CD%
50 )
51 echo LyX build : "%LYX_BUILD%"
52
53 if [%GNUWIN32_DIR%]==[] (
54         echo GNUWIN32_DIR not set.
55         echo Downloading win32 deps.
56         set DEPENDENCIES_DOWNLOAD="-DLYX_DEPENDENCIES_DOWNLOAD=1"
57 ) else set PATH="%GNUWIN32_DIR%\bin";%PATH%
58
59 if not exist %LYX_BUILD% (
60         echo creating "%LYX_BUILD%"
61         mkdir "%LYX_BUILD%"
62         if not exist %LYX_BUILD% (
63                 echo Exiting script.
64                 goto :eof
65         )
66 )
67
68 cd "%LYX_BUILD%"
69
70 REM start with a new cmake run
71 ::del CMakeCache.txt
72
73 if [%2]==[] (
74         set USED_STUDIO="Visual Studio 10"
75 ) else (
76         set USED_STUDIO=%2%
77 )
78
79
80 if "%1%" == "devel" (
81         REM Build solution to develop LyX
82         cmake %LYX_SOURCE% -G%USED_STUDIO% -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_INSTALL=0 -DLYX_RELEASE=0 -DLYX_CONSOLE=FORCE %DEPENDENCIES_DOWNLOAD%
83         msbuild lyx.sln /p:Configuration=Debug /t:LyX /t:tex2lyx
84 )
85
86 if "%1%" == "install" (
87         REM Build solution to develop LyX
88         cmake %LYX_SOURCE% -G%USED_STUDIO% -DLYX_MERGE_FILES=1 -DLYX_INSTALL=1 %DEPENDENCIES_DOWNLOAD% 
89         msbuild lyx.sln         /p:Configuration=Release /t:ALL_BUILD
90         msbuild INSTALL.vcxproj /p:Configuration=Release 
91 )
92
93 REM go back to the dir where the script was called from
94 cd /D %CALLED_FROM%
95
96 :eof