mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
Some tuning for MinGW 4.8 build
This commit is contained in:
parent
b567dd4d37
commit
7916cc5a87
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -10,6 +10,7 @@ build/
|
|||
release/
|
||||
tmp/
|
||||
goldendict
|
||||
winlibs/lib32-48/
|
||||
|
||||
Makefile
|
||||
Makefile.Debug
|
||||
|
|
|
@ -53,7 +53,11 @@ win32 {
|
|||
HUNSPELL_LIB = hunspell
|
||||
} else {
|
||||
LIBS += -lhunspell-1.3.2
|
||||
LIBS += -L$${PWD}/winlibs/lib
|
||||
CONFIG(gcc48) {
|
||||
LIBS += -L$${PWD}/winlibs/lib32-48
|
||||
} else {
|
||||
LIBS += -L$${PWD}/winlibs/lib
|
||||
}
|
||||
!x64:QMAKE_LFLAGS += -Wl,--large-address-aware
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue