]> git.lyx.org Git - lyx.git/blob - development/cmake/build.bat
* zh_TW.po: Update from Mingyi Wu
[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     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 Save path
31 set CALLED_FROM=%CD%
32
33
34 REM Add path to qmake here or set PATH correctly on your system.
35 set PATH="D:\Qt\bin";%PATH%
36
37 REM Edit pathes here or set the environment variables on you system.
38 set GNUWIN32_DIR=D:\LyXGit\Master\lyx-windows-deps-msvc2010
39 set LYX_SOURCE=D:\LyXGit\Master\
40 set LYX_BUILD=D:\LyXGit\Master\compile-result
41
42 if [%LYX_SOURCE%]==[] (
43         set LYX_SOURCE=%~DP0\..\..
44 )
45 echo LyX source: "%LYX_SOURCE%"
46
47 if [%LYX_BUILD%]==[] (
48         set LYX_BUILD=%CD%
49 )
50 echo LyX build : "%LYX_BUILD%"
51
52 if [%GNUWIN32_DIR%]==[] (
53         echo GNUWIN32_DIR not set.
54         echo Downloading win32 deps.
55         set DEPENDENCIES_DOWNLOAD="-DLYX_DEPENDENCIES_DOWNLOAD=1"
56 ) else set PATH="%GNUWIN32_DIR%\bin";%PATH%
57
58 if not exist %LYX_BUILD% (
59         echo creating "%LYX_BUILD%"
60         mkdir "%LYX_BUILD%"
61         if not exist %LYX_BUILD% (
62                 echo Exiting script.
63                 goto :eof
64         )
65 )
66
67 cd "%LYX_BUILD%"
68
69 REM start with a new cmake run
70 ::del CMakeCache.txt
71
72 if [%2]==[] (
73         set USED_STUDIO="Visual Studio 10"
74 ) else (
75         set USED_STUDIO=%2%
76 )
77
78
79 if "%1%" == "devel" (
80         REM Build solution to develop LyX
81         cmake %LYX_SOURCE% -GNinja -G%USED_STUDIO% -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_INSTALL=0 -DLYX_RELEASE=0 -DLYX_CONSOLE=FORCE %DEPENDENCIES_DOWNLOAD%
82         msbuild lyx.sln /p:Configuration=Debug /t:LyX /t:tex2lyx
83 )
84
85 if "%1%" == "install" (
86         REM Build solution to develop LyX
87         REM set -DLYX_MERGE_REBUILD and -DLYX_MERGE_FILES to 1 for a version released with an installer
88         cmake %LYX_SOURCE% -G%USED_STUDIO% -DLYX_MERGE_REBUILD=0 -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_INSTALL=1 -DLYX_RELEASE=1 -DLYX_CONSOLE=OFF %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