[Qt] Differentiate between static and non-static builds of Qt
This commit is contained in:
parent
525588b159
commit
17cf763b3d
|
@ -72,6 +72,8 @@ project("xenia-app")
|
|||
include = "QtVulkanSupport",
|
||||
}
|
||||
|
||||
defines({"QT_STATIC=1"})
|
||||
|
||||
configuration {"not Checked"}
|
||||
links({
|
||||
"qtmain",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <QApplication>
|
||||
#include <QtPlugin>
|
||||
|
||||
#if XE_PLATFORM_WIN32
|
||||
#if XE_PLATFORM_WIN32 && QT_STATIC
|
||||
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue