forked from qt-creator/qt-creator
Help: Fix linking on Windows
Amends bf536a0441
.
Change-Id: Iad9172f5062640ec84debfb2ba3c307fe765c770
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -155,3 +155,5 @@ SOURCES += \
|
||||
|
||||
INCLUDEPATH *= $$PWD
|
||||
win32: DEFINES += LITEHTML_UTF8
|
||||
|
||||
DEFINES *= QLITEHTML_STATIC_LIBRARY
|
||||
|
@@ -15,7 +15,12 @@ Product {
|
||||
property string gumboHeaderDir: gumboSrcDir + "/include/gumbo"
|
||||
property string litehtmlHeaderDir: path + "/litehtml/include/litehtml"
|
||||
property string mainHeaderDir: litehtmlHeaderDir + '/..'
|
||||
property stringList sharedDefines: qbs.targetOS.contains("windows") ? ["LITEHTML_UTF8"] : []
|
||||
property stringList sharedDefines: {
|
||||
var defines = ["QLITEHTML_STATIC_LIBRARY"];
|
||||
if (qbs.targetOS.contains("windows"))
|
||||
defines.push("LITEHTML_UTF8");
|
||||
return defines;
|
||||
}
|
||||
|
||||
cpp.defines: sharedDefines
|
||||
cpp.includePaths: {
|
||||
|
Reference in New Issue
Block a user