From 525588b159674b13254e7fdbd227e807d2bcfae8 Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Sun, 20 May 2018 16:30:49 -0500 Subject: [PATCH] [CI] Use debug binaries for Checked builds --- src/xenia/app/premake5.lua | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/src/xenia/app/premake5.lua b/src/xenia/app/premake5.lua index 322a39072..62d632719 100644 --- a/src/xenia/app/premake5.lua +++ b/src/xenia/app/premake5.lua @@ -72,13 +72,23 @@ project("xenia-app") include = "QtVulkanSupport", } - links({ - "qtmain", - "qtfreetype", - "qtlibpng", - "qtpcre2", - "qtharfbuzz", - }) + configuration {"not Checked"} + links({ + "qtmain", + "qtfreetype", + "qtlibpng", + "qtpcre2", + "qtharfbuzz", + }) + configuration {"Checked"} + links({ + "qtmaind", + "qtfreetyped", + "qtlibpngd", + "qtpcre2d", + "qtharfbuzzd", + }) + configuration {} qtmodules{"AccessibilitySupport", "EventDispatcherSupport", "FontDatabaseSupport", "ThemeSupport", "VulkanSupport"} libdirs("%{cfg.qtpath}/plugins/platforms") @@ -91,8 +101,12 @@ project("xenia-app") "winmm", "netapi32", "userenv", - "qwindows", }) + configuration {"not Checked"} + links({"qwindows"}) + configuration {"Checked"} + links({"qwindowsd"}) + configuration {} filter() end