-
Notifications
You must be signed in to change notification settings - Fork 0
/
ddvs.pro
60 lines (48 loc) · 1.13 KB
/
ddvs.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
50
51
52
53
54
55
56
57
58
#-------------------------------------------------
#
# Project created by QtCreator 2011-11-21T15:41:46
#
#-------------------------------------------------
QT += core gui opengl
TARGET = ddvs
TEMPLATE = app
!win32-msvc*:QMAKE_CXXFLAGS= -std=c++0x
SOURCES += main.cpp\
mainwindow.cpp \
additemdialog.cpp \
newmemberswidget.cpp \
edititemdialog.cpp \
expression.cpp \
statement.cpp \
function.cpp \
interpreter.cpp \
graphicsitems.cpp
HEADERS += mainwindow.h \
additemdialog.h \
newmemberswidget.h \
edititemdialog.h \
statement.h \
ast.h \
expression.h \
skipper.h \
function.h \
interpreter.h \
error.h \
annotation.h \
types.h \
statement_def.h \
function_def.h \
expression_def.h \
graphicsview.h \
graphicsitems.h
linux:INCLUDEPATH += /usr/include/boost-1_49/
macx:INCLUDEPATH += /Users/chris/boost_1_49_0/
win32:INCLUDEPATH += C:\\dev\\include\\boost_1_49_0
#DEFINES+= QT_NO_DEBUG_OUTPUT
FORMS += mainwindow.ui \
additemdialog.ui \
newmemberswidget.ui \
edititemdialog.ui
RESOURCES += \
icons.qrc
OTHER_FILES +=