blob: cbce115f8a8c153ba94dc56948ca75794e0d8268 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
cd ..
dir=`pwd`
cd packaging/windows
./make-translations.sh
makensis -DDLLDIR=$dir/../libs/dll/ \
-DPRODUCT_VERSION="1.7.3.4" \
-DEXESUFFIX=/src \
-DUPX=true \
-DBITS=${BITS} \
setup.nsi
|