-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL-System_Designer.pro
More file actions
52 lines (42 loc) · 1.24 KB
/
L-System_Designer.pro
File metadata and controls
52 lines (42 loc) · 1.24 KB
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
50
51
52
#-------------------------------------------------
#
# Project created by QtCreator 2014-12-08T17:05:19
#
#-------------------------------------------------
QT += core gui opengl
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = L-System_Designer
TEMPLATE = app
SOURCES += main.cpp\
MainWindow.cpp \
LSystem.cpp \
Variable.cpp \
VariableSequence.cpp \
Production.cpp \
VariableSequenceModel.cpp \
DialogCreateVariable.cpp \
ProductionTableModel.cpp \
SpinBoxDelegate.cpp \
VariableSequenceListModel.cpp \
DialogCreateAxiom.cpp \
Simulator.cpp
HEADERS += MainWindow.h \
LSystem.h \
Variable.h \
VariableSequence.h \
Production.h \
VariableSequenceModel.h \
DialogCreateVariable.h \
ProductionTableModel.h \
SpinBoxDelegate.h \
VariableSequenceListModel.h \
DialogCreateAxiom.h \
Simulator.h
FORMS += MainWindow.ui \
DialogCreateVariable.ui \
DialogCreateAxiom.ui
unix|win32: LIBS += -L$$PWD/../../c++/Lua/ -llua52
INCLUDEPATH += $$PWD/../../c++/Lua/include
DEPENDPATH += $$PWD/../../c++/Lua/include
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/../../c++/Lua/lua52.lib
else:unix|win32-g++: PRE_TARGETDEPS += $$PWD/../../c++/Lua/liblua52.a