attempt to fix compilation on windows

This commit is contained in:
csoler 2019-09-08 14:35:45 +02:00
parent 718a8bafa3
commit 9188d18a90
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -101,7 +101,14 @@ win32-g++ {
LIBS *= $$linkDynamicLibs(dLib)
# export symbols for the plugins
LIBS += -Wl,--export-all-symbols,--out-implib,lib/libretroshare-gui.a
LIBS += -Wl,--export-all-symbols,--out-implib,lib/libretroshare-service.a
# create lib directory
isEmpty(QMAKE_SH) {
QMAKE_PRE_LINK = $(CHK_DIR_EXISTS) lib $(MKDIR) lib
} else {
QMAKE_PRE_LINK = $(CHK_DIR_EXISTS) lib || $(MKDIR) lib
}
}