[Qt] Differentiate between static and non-static builds of Qt

This commit is contained in:
Dr. Chat 2018-05-21 00:57:32 -05:00
parent 525588b159
commit 17cf763b3d
2 changed files with 3 additions and 1 deletions

View File

@ -72,6 +72,8 @@ project("xenia-app")
include = "QtVulkanSupport",
}
defines({"QT_STATIC=1"})
configuration {"not Checked"}
links({
"qtmain",

View File

@ -22,7 +22,7 @@
#include <QApplication>
#include <QtPlugin>
#if XE_PLATFORM_WIN32
#if XE_PLATFORM_WIN32 && QT_STATIC
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin);
#endif