-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbugel.pro
69 lines (59 loc) · 1.58 KB
/
bugel.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
59
60
61
62
63
64
65
66
67
68
69
#-------------------------------------------------
#
# Project created by QtCreator 2015-06-10T07:26:42
#
#-------------------------------------------------
QT += core gui multimedia
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = bugel
TEMPLATE = app
CONFIG += c++11
QMAKE_CXXFLAGS += -wd4100
SOURCES += main.cpp\
mainwindow.cpp \
timelinelayerwidget.cpp \
timeline.cpp \
timelinecontainer.cpp \
timelinewidget.cpp \
playbackwidget.cpp \
util.cpp \
timelineeventswidget.cpp \
timelinesettingsdialog.cpp \
luascriptcontext.cpp \
timelineevent.cpp \
timelinelayer.cpp \
eventlist.cpp \
bugelexception.cpp \
placeholderevent.cpp \
project.cpp \
projectsettingsdialog.cpp \
eventtypemodel.cpp
HEADERS += mainwindow.h \
timelinelayerwidget.h \
timeline.h \
timelinecontainer.h \
timelinewidget.h \
playbackwidget.h \
util.h \
timelineeventswidget.h \
selection.h \
timelinesettingsdialog.h \
luascriptcontext.h \
timelineevent.h \
timelinelayer.h \
eventlist.h \
bugelexception.h \
placeholderevent.h \
project.h \
projectsettingsdialog.h \
eventtypemodel.h
FORMS += mainwindow.ui \
timelinelayerwidget.ui \
timelinecontainer.ui \
playbackwidget.ui \
timelinesettingsdialog.ui \
projectsettingsdialog.ui
INCLUDEPATH += C:/libraries/cpp/lua-5.2.3_Win32_dllw4_lib/include
LIBS += C:/libraries/cpp/lua-5.2.3_Win32_dllw4_lib/liblua52.a
INCLUDEPATH += C:/libraries/cpp/LuaState/include
QMAKE_CXXFLAGS += -D_CRT_SECURE_NO_WARNINGS