summaryrefslogtreecommitdiffstats
path: root/tools/q3dsviewer/q3dsviewer.pro
blob: d4ffae074629189499e2693d86fabe55ec4b53eb (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
26
27
28
29
30
31
32
33
QT += 3dstudioruntime2-private

qtHaveModule(widgets):!boot2qt {
    QT += widgets
    DEFINES += Q3DSVIEWER_WIDGETS
    SOURCES += \
        q3dsmainwindow.cpp \
        q3dsaboutdialog.cpp
    HEADERS += \
        q3dsmainwindow.h \
        q3dsaboutdialog.h

    FORMS += q3dsaboutdialog.ui
}

SOURCES += main.cpp

RC_ICONS = resources/images/3D-studio-viewer.ico
ICON = resources/images/viewer.icns
QMAKE_TARGET_DESCRIPTION = Qt 3D Studio Viewer

android {
    TEMPLATE = app
    TARGET = q3dsviewer
} else {
    load(qt_app)
}

CONFIG += app_bundle

RESOURCES += \
    resources.qrc