blob: 2a36d51b34d28c4bc1925414eabb74d8c90a37c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#! [0]
TEMPLATE = lib
CONFIG += plugin
HEADERS = simplestyle.h \
simplestyleplugin.h
SOURCES = simplestyle.cpp \
simplestyleplugin.cpp
TARGET = simplestyleplugin
#! [0]
win32 {
debug:DESTDIR = ../debug/styles/
release:DESTDIR = ../release/styles/
} else {
DESTDIR = ../styles/
}
# install
target.path = $$[QT_INSTALL_EXAMPLES]/tools/styleplugin/styles
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS plugin.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/tools/styleplugin/plugin
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
symbian:TARGET.EPOCALLOWDLLDATA = 1
|