annotate os-win10.pro @ 2593:bc882961a233

Update and tweak the plugin population warning dialog, which was not properly being shown in async-transform-population-world
author Chris Cannam
date Fri, 14 Aug 2020 10:39:02 +0100
parents 7334a94a1ab8
children
rev   line source
Chris@2578 1
Chris@2578 2 TEMPLATE = lib
Chris@2578 3
Chris@2578 4 exists(config.pri) {
Chris@2578 5 include(config.pri)
Chris@2578 6 }
Chris@2578 7
Chris@2578 8 !exists(config.pri) {
Chris@2578 9 include(noconfig.pri)
Chris@2578 10 }
Chris@2578 11
Chris@2578 12 CONFIG -= qt
Chris@2578 13 CONFIG += plugin no_plugin_name_prefix release warn_on
Chris@2578 14
Chris@2578 15 TARGET = os
Chris@2578 16
Chris@2578 17 OBJECTS_DIR = o
Chris@2578 18
Chris@2578 19 win32-msvc* {
Chris@2578 20 LIBS += -EXPORT:OSReportsDarkThemeActive -EXPORT:OSQueryAccentColour
Chris@2578 21 LIBS += -lWindowsApp
Chris@2578 22 }
Chris@2578 23
Chris@2578 24 SOURCES += \
Chris@2578 25 svcore/system/os-win10.cpp
Chris@2578 26