summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/wizards/qml-extension/project.pro
blob: 6e3cb29342b13b61398340d45ece1d3feaf3d025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TEMPLATE = lib
TARGET  = %ProjectName%
QT += declarative
CONFIG += qt plugin

TARGET = $$qtLibraryTarget($$TARGET)

# Input
SOURCES += \
    %ProjectName%.cpp \
    %ObjectName%.cpp

OTHER_FILES=qmldir

HEADERS += \
    %ProjectName%.h \
    %ObjectName%.h