changeset 2578:7334a94a1ab8

Whoops, add missing .pro files
author Chris Cannam
date Tue, 21 Jul 2020 16:21:58 +0100
parents 1799e90689b5
children d9d83c0e8480
files os-other.pro os-win10.pro
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:21:58 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:21:58 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
+