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