To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / os-win10.pro @ 462:dc2226fa0795

History | View | Annotate | Download (375 Bytes)

1

    
2
TEMPLATE = lib
3

    
4
exists(config.pri) {
5
    include(config.pri)
6
}
7

    
8
!exists(config.pri) {
9
    include(noconfig.pri)
10
}
11

    
12
CONFIG -= qt
13
CONFIG += plugin no_plugin_name_prefix release warn_on
14

    
15
TARGET = os
16

    
17
OBJECTS_DIR = o
18

    
19
win32-msvc* {
20
    LIBS += -EXPORT:OSReportsDarkThemeActive -EXPORT:OSQueryAccentColour
21
    LIBS += -lWindowsApp
22
}
23

    
24
SOURCES += \
25
    svcore/system/os-win10.cpp
26