changeset 2579:d9d83c0e8480

Merge
author Chris Cannam
date Tue, 21 Jul 2020 16:22:10 +0100
parents 7334a94a1ab8 (diff) 0d35663085d0 (current diff)
children 5de5f3e0803d
files
diffstat 2 files changed, 51 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/os-other.pro	Tue Jul 21 16:22:10 2020 +0100
@@ -0,0 +1,25 @@
+
+TEMPLATE = lib
+
+exists(config.pri) {
+    include(config.pri)
+}
+
+!exists(config.pri) {
+    include(noconfig.pri)
+}
+
+CONFIG -= qt
+CONFIG += plugin no_plugin_name_prefix release warn_on
+
+TARGET = os_other
+
+OBJECTS_DIR = o
+
+win32-msvc* {
+    LIBS += -EXPORT:OSReportsDarkThemeActive -EXPORT:OSQueryAccentColour
+}
+
+SOURCES += \
+    svcore/system/os-other.cpp
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/os-win10.pro	Tue Jul 21 16:22:10 2020 +0100
@@ -0,0 +1,26 @@
+
+TEMPLATE = lib
+
+exists(config.pri) {
+    include(config.pri)
+}
+
+!exists(config.pri) {
+    include(noconfig.pri)
+}
+
+CONFIG -= qt
+CONFIG += plugin no_plugin_name_prefix release warn_on
+
+TARGET = os
+
+OBJECTS_DIR = o
+
+win32-msvc* {
+    LIBS += -EXPORT:OSReportsDarkThemeActive -EXPORT:OSQueryAccentColour
+    LIBS += -lWindowsApp
+}
+
+SOURCES += \
+    svcore/system/os-win10.cpp
+