Mercurial > hg > sonic-visualiser
annotate os-win10.pro @ 2596:04d381f0d89a tip
Default branch is now named default on git as well as hg, in case we ever want to switch to mirroring in the other direction
author | Chris Cannam |
---|---|
date | Thu, 27 Aug 2020 15:58:56 +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 |