mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
fix: on Windows, link -lzlib instead of -lz
pave way for futher vcpkg refactor
This commit is contained in:
parent
3dd0c83794
commit
5aee6e4627
|
@ -105,10 +105,16 @@ OBJECTS_DIR = build
|
|||
UI_DIR = build
|
||||
MOC_DIR = build
|
||||
RCC_DIR = build
|
||||
LIBS += -lz \
|
||||
-lbz2 \
|
||||
LIBS += -lbz2 \
|
||||
-llzo2
|
||||
|
||||
win32{
|
||||
LIBS += -lzlib
|
||||
}else{
|
||||
LIBS += -lz
|
||||
}
|
||||
|
||||
|
||||
win32 {
|
||||
QM_FILES_INSTALL_PATH = /locale/
|
||||
TARGET = GoldenDict
|
||||
|
|
2
thirdparty/eb
vendored
2
thirdparty/eb
vendored
|
@ -1 +1 @@
|
|||
Subproject commit b4d020bee71b10c8fc1d15beb5849c5b19fd5fa1
|
||||
Subproject commit 1d57cfee06c3b8dd2a1eb7a509f7b3e2ce5ea06d
|
Loading…
Reference in a new issue