~neric27/midori/mz-sync

« back to all changes in this revision

Viewing changes to win32/makedist/win32-release

  • Committer: Eric Le Lay
  • Date: 2014-03-20 20:40:49 UTC
  • mfrom: (6508.1.105 midori)
  • Revision ID: neric27@wanadoo.fr-20140320204049-nn3fic55ukwwifk5
merge trunk r6613

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
dropbox_dir=$HOME/Dropbox/Public
14
14
SRCDIR=$PWD
 
15
CONFIGURE_OPTIONS="-DUSE_ZEITGEIST=0 -DUSE_GTK3=1 -DCMAKE_VERBOSE_MAKEFILE=0 -DEXTRA_WARNINGS=1"
15
16
 
16
17
# 32-bit build
17
18
#mingw32-env
20
21
 
21
22
rm -fr _mingw32
22
23
mkdir _mingw32 && cd _mingw32
23
 
mingw32-cmake -DUSE_ZEITGEIST=0 -DUSE_GTK3=1 -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX -DCMAKE_VERBOSE_MAKEFILE=0 $SRCDIR
 
24
mingw32-cmake -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX ${CONFIGURE_OPTIONS} $SRCDIR
24
25
make
25
26
sudo make install || exit
26
27
 
46
47
 
47
48
    rm -fr _mingw64
48
49
    mkdir _mingw64 && cd _mingw64
49
 
    mingw64-cmake -DUSE_ZEITGEIST=0 -DUSE_GTK3=1 -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX -DCMAKE_VERBOSE_MAKEFILE=0 $SRCDIR
 
50
    mingw64-cmake -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX ${CONFIGURE_OPTIONS} $SRCDIR
50
51
    make
51
52
    sudo make install || exit
52
53