blob: 1dff0374a635e8f961651e698ca2490d5d7a6cb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = lib
TARGET = qcompactstyle
CONFIG += qt warn_off release plugin
DESTDIR = ../../../styles
HEADERS = ../../../../include/ntqcompactstyle.h
SOURCES = main.cpp \
../../../../src/styles/qcompactstyle.cpp
!contains(styles, windows) {
HEADERS += ../../../../include/ntqwindowsstyle.h
SOURCES += ../../../../src/styles/qwindowsstyle.cpp
}
unix:OBJECTS_DIR = .obj
win32:OBJECTS_DIR = obj
target.path += $$plugins.path/styles
INSTALLS += target
|