blob: f4d1f62c0b55b78e21e5f9b039d9a3b16a7f85a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
!include( ../examples.pri ) {
error( "Couldn't find the examples.pri file!" )
}
CONFIG += qmltypes
QML_IMPORT_NAME = AxisHandlingExample
QML_IMPORT_MAJOR_VERSION = 1
SOURCES += main.cpp \
customformatter.cpp
HEADERS += customformatter.h
RESOURCES += axishandling.qrc
OTHER_FILES += doc/src/* \
doc/images/* \
qml/axishandling/*
|