aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/tableview/gameoflife/gameoflife.pro
blob: 9c47a9b5308b2eef8f97e57e071b4f5d15095477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
TEMPLATE = app

QT += quick qml

CONFIG += qmltypes
QML_IMPORT_NAME = GameOfLifeModel
QML_IMPORT_MAJOR_VERSION = 1

SOURCES += \
        main.cpp \
    gameoflifemodel.cpp

RESOURCES += \
    main.qml \
    gosperglidergun.cells

target.path = $$[QT_INSTALL_EXAMPLES]/quick/tableview/gameoflife
INSTALLS += target

HEADERS += \
    gameoflifemodel.h