-
Notifications
You must be signed in to change notification settings - Fork 1
/
Terraria.pro
executable file
·49 lines (41 loc) · 936 Bytes
/
Terraria.pro
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#-------------------------------------------------
#
# Project created by QtCreator 2017-01-31T14:37:41
#
#-------------------------------------------------
QT += core gui multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Terraria
TEMPLATE = app
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/view.cpp \
src/game.cpp \
src/block.cpp \
src/camera.cpp \
src/world.cpp \
src/player.cpp \
src/entity.cpp \
src/aabb.cpp \
src/inventory.cpp \
src/rabbit.cpp \
src/worldgenerator.cpp \
src/bee.cpp \
src/shummi.cpp
HEADERS += src/mainwindow.h \
src/view.h \
src/game.h \
src/block.h \
src/camera.h \
src/world.h \
src/player.h \
src/entity.h \
src/aabb.h \
src/inventory.h \
src/rabbit.h \
src/worldgenerator.h \
src/bee.h \
src/shummi.h
FORMS += src/mainwindow.ui
RESOURCES += \
res.qrc