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-other.pro @ 462:dc2226fa0795

History | View | Annotate | Download (356 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_other
16

    
17
OBJECTS_DIR = o
18

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

    
23
SOURCES += \
24
    svcore/system/os-other.cpp
25