-
Notifications
You must be signed in to change notification settings - Fork 555
/
xbuild.bat
221 lines (205 loc) · 5.98 KB
/
xbuild.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
@echo off
setlocal enabledelayedexpansion
if not defined include (
echo You should run this inside Developer Command Promt!
exit /b
)
for %%a in ("%include:;=" "%") do (
echo %%a| findstr /r "ATLMFC\\include" > nul
if not errorlevel 1 (
set "atl_lib_dir=%%a"
set dpi_manifest=!atl_lib_dir:ATLMFC\include=Include\Manifest\PerMonitorHighDPIAware.manifest!
if not exist ".\PerMonitorHighDPIAware.manifest" (
copy ""!dpi_manifest!"" .\
)
)
)
rem ---------------------------------------------------------------------------
if not exist env.bat copy env.bat.template env.bat
if exist env.bat call env.bat
set PRODUCT_VERSION=
if not defined WEASEL_ROOT set WEASEL_ROOT=%CD%
if not defined VERSION_MAJOR set VERSION_MAJOR=0
if not defined VERSION_MINOR set VERSION_MINOR=16
if not defined VERSION_PATCH set VERSION_PATCH=3
if not defined WEASEL_VERSION set WEASEL_VERSION=%VERSION_MAJOR%.%VERSION_MINOR%.%VERSION_PATCH%
if not defined WEASEL_BUILD set WEASEL_BUILD=0
rem use numeric build version for release build
set PRODUCT_VERSION=%WEASEL_VERSION%.%WEASEL_BUILD%
rem for non-release build, try to use git commit hash as product build version
if not defined RELEASE_BUILD (
rem check if git is installed and available, then get the short commit id of head
git --version >nul 2>&1
if not errorlevel 1 (
for /f "delims=" %%i in ('git tag --sort=-creatordate ^| findstr /r "%WEASEL_VERSION%"') do (
set LAST_TAG=%%i
goto found_tag
)
:found_tag
for /f "delims=" %%i in ('git rev-list %LAST_TAG%..HEAD --count') do (
set WEASEL_BUILD=%%i
)
rem get short commmit id of head
for /F %%i in ('git rev-parse --short HEAD') do (set PRODUCT_VERSION=%WEASEL_VERSION%.%WEASEL_BUILD%.%%i)
)
)
rem FILE_VERSION is always 4 numbers; same as PRODUCT_VERSION in release build
if not defined FILE_VERSION set FILE_VERSION=%WEASEL_VERSION%.%WEASEL_BUILD%
echo PRODUCT_VERSION=%PRODUCT_VERSION%
echo WEASEL_VERSION=%WEASEL_VERSION%
echo WEASEL_BUILD=%WEASEL_BUILD%
echo WEASEL_ROOT=%WEASEL_ROOT%
echo WEASEL_BUNDLED_RECIPES=%WEASEL_BUNDLED_RECIPES%
echo BOOST_ROOT=%BOOST_ROOT%
if defined GITHUB_ENV (
setlocal enabledelayedexpansion
echo git_ref_name=%PRODUCT_VERSION%>>!GITHUB_ENV!
)
rem ---------------------------------------------------------------------------
rem parse the command line options
set build_config=release
set build_rebuild=0
set build_boost=0
set boost_build_variant=release
set build_data=0
set build_opencc=0
set build_rime=0
set rime_build_variant=release
set build_weasel=0
set build_installer=0
set build_arm64=0
set build_clean=0
set build_commands=0
:parse_cmdline_options
if "%1" == "" goto end_parsing_cmdline_options
if "%1" == "debug" (
set build_config=debug
set boost_build_variant=debug
set rime_build_variant=debug
)
if "%1" == "release" (
set build_config=release
set boost_build_variant=release
set rime_build_variant=release
)
if "%1" == "rebuild" set build_rebuild=1
if "%1" == "boost" set build_boost=1
if "%1" == "data" set build_data=1
if "%1" == "opencc" set build_opencc=1
if "%1" == "rime" set build_rime=1
if "%1" == "librime" set build_rime=1
if "%1" == "weasel" set build_weasel=1
if "%1" == "installer" set build_installer=1
if "%1" == "arm64" set build_arm64=1
if "%1" == "clean" set build_clean=1
if "%1" == "commands" set build_commands=1
if "%1" == "all" (
set build_boost=1
set build_data=1
set build_opencc=1
set build_rime=1
set build_weasel=1
set build_installer=1
set build_arm64=1
set build_commands=1
)
shift
goto parse_cmdline_options
:end_parsing_cmdline_options
if %build_weasel% == 0 (
if %build_boost% == 0 (
if %build_data% == 0 (
if %build_opencc% == 0 (
if %build_rime% == 0 (
if %build_commands% == 0 (
set build_weasel=1
))))))
rem
rem quit WeaselServer.exe before building
cd /d %WEASEL_ROOT%
if exist output\weaselserver.exe (
output\weaselserver.exe /q
)
rem build booost
if %build_boost% == 1 (
if %build_arm64% == 1 (
call build.bat boost arm64
) else (
call build.bat boost
)
if errorlevel 1 exit /b 1
cd /d %WEASEL_ROOT%
)
if %build_rime% == 1 (
call build.bat rime
if errorlevel 1 exit /b 1
cd /d %WEASEL_ROOT%
)
if %build_data% == 1 (
call build.bat data
if errorlevel 1 exit /b 1
cd /d %WEASEL_ROOT%
)
if %build_opencc% == 1 (
call build.bat opencc
if errorlevel 1 exit /b 1
cd /d %WEASEL_ROOT%
)
if %build_commands% == 1 (
echo Generating compile_commands.json
xmake project -k compile_commands -m %build_config%
)
rem if to clean
if %build_clean% == 1 ( goto clean )
if %build_weasel% == 0 ( goto end )
if %build_arm64% == 1 (
xmake f -a arm64 -m %build_config%
if %build_rebuild% == 1 ( xmake clean )
xmake
if errorlevel 1 goto error
xmake f -a arm -m %build_config%
if %build_rebuild% == 1 ( xmake clean )
xmake
if errorlevel 1 goto error
)
xmake f -a x64 -m %build_config%
if %build_rebuild% == 1 ( xmake clean )
xmake
if errorlevel 1 goto error
xmake f -a x86 -m %build_config%
if %build_rebuild% == 1 ( xmake clean )
xmake
if errorlevel 1 goto error
if %build_arm64% == 1 (
pushd arm64x_wrapper
call build.bat
if errorlevel 1 goto error
popd
copy arm64x_wrapper\weaselARM64X.dll output
if errorlevel 1 goto error
copy arm64x_wrapper\weaselARM64X.ime output
if errorlevel 1 goto error
)
if %build_installer% == 1 (
"%ProgramFiles(x86)%"\NSIS\Bin\makensis.exe ^
/DWEASEL_VERSION=%WEASEL_VERSION% ^
/DWEASEL_BUILD=%WEASEL_BUILD% ^
/DPRODUCT_VERSION=%PRODUCT_VERSION% ^
output\install.nsi
if errorlevel 1 goto error
)
goto end
:clean
if exist build (
rmdir /s /q build
if errorlevel 1 (
echo error cleaning weasel build
goto error
)
goto end
)
:error
echo error building weasel...
exit /b 1
:end
cd %WEASEL_ROOT%