Skip to content

Commit

Permalink
Merge pull request goldendict#41 from dinvlad/master
Browse files Browse the repository at this point in the history
Build Mac binary based on the host arch.
  • Loading branch information
dragonroot committed Aug 17, 2011
2 parents 0c095db + a91def8 commit 0138805
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion goldendict.pro
Expand Up @@ -89,7 +89,11 @@ unix {
INSTALLS += desktops2
}
mac {
CONFIG += x86 x86_64
contains(QMAKE_HOST.arch, x86_64) {
CONFIG += x86 x86_64
} else {
CONFIG += x86
}
LIBS = -lz \
-liconv \
-lvorbisfile \
Expand Down

0 comments on commit 0138805

Please sign in to comment.