Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.bat - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a7bea056cb8c734885d5b69bcbb209057808410f (plain)
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
rmdir /S /Q gajim_built

mkdir gajim_built
hg archive gajim_built
xcopy ..\gajim-plugins\plugin_installer gajim_built\plugins\plugin_installer /e /i

copy msgfmt.exe gajim_built
copy gettextsrc.dll gajim_built
copy gettextlib.dll gajim_built
copy msvcr90.dll gajim_built

cd gajim_built

REM for libglade-2.0.0.dll
PATH=..\src\gtk\bin;%PATH%

c:\python27\python.exe setup_win32.py build_exe

move build\exe.win32-2.7 .
rename exe.win32-2.7 bin

copy ..\LIBEAY32.dll bin
copy ..\SSLEAY32.dll bin

REM for snarl plugin
xcopy ..\win32com bin\win32com /e /i

mkdir bin\gtk
cd ../src/gtk
hg archive ..\..\gajim_built\bin\gtk
cd ../../gajim_built/

REM for msgfmt
PATH=bin\gtk\bin;%PATH%

for %%l in (po\*.po) do mkdir po\%%~nl & mkdir po\%%~nl\LC_MESSAGES & msgfmt -o po\%%~nl\LC_MESSAGES\gajim.mo %%l

"C:\Program Files (x86)\NSIS\makensis" gajim.nsi

cd ..