[CI] Use debug binaries for Checked builds
This commit is contained in:
parent
7dc644dc22
commit
525588b159
|
@ -72,13 +72,23 @@ project("xenia-app")
|
||||||
include = "QtVulkanSupport",
|
include = "QtVulkanSupport",
|
||||||
}
|
}
|
||||||
|
|
||||||
links({
|
configuration {"not Checked"}
|
||||||
"qtmain",
|
links({
|
||||||
"qtfreetype",
|
"qtmain",
|
||||||
"qtlibpng",
|
"qtfreetype",
|
||||||
"qtpcre2",
|
"qtlibpng",
|
||||||
"qtharfbuzz",
|
"qtpcre2",
|
||||||
})
|
"qtharfbuzz",
|
||||||
|
})
|
||||||
|
configuration {"Checked"}
|
||||||
|
links({
|
||||||
|
"qtmaind",
|
||||||
|
"qtfreetyped",
|
||||||
|
"qtlibpngd",
|
||||||
|
"qtpcre2d",
|
||||||
|
"qtharfbuzzd",
|
||||||
|
})
|
||||||
|
configuration {}
|
||||||
qtmodules{"AccessibilitySupport", "EventDispatcherSupport", "FontDatabaseSupport", "ThemeSupport", "VulkanSupport"}
|
qtmodules{"AccessibilitySupport", "EventDispatcherSupport", "FontDatabaseSupport", "ThemeSupport", "VulkanSupport"}
|
||||||
libdirs("%{cfg.qtpath}/plugins/platforms")
|
libdirs("%{cfg.qtpath}/plugins/platforms")
|
||||||
|
|
||||||
|
@ -91,8 +101,12 @@ project("xenia-app")
|
||||||
"winmm",
|
"winmm",
|
||||||
"netapi32",
|
"netapi32",
|
||||||
"userenv",
|
"userenv",
|
||||||
"qwindows",
|
|
||||||
})
|
})
|
||||||
|
configuration {"not Checked"}
|
||||||
|
links({"qwindows"})
|
||||||
|
configuration {"Checked"}
|
||||||
|
links({"qwindowsd"})
|
||||||
|
configuration {}
|
||||||
filter()
|
filter()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue