blob: 513c97715b0f47d6be509d6a4fd7c15a15a8a9ed (
plain)
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
|
# -*- Makefile -*-
TEMPLATE = app
TARGET = editor
DEPENDPATH += . ..
INCLUDEPATH += . ..
QT += core gui xml
# For debugging
QMAKE_CXXFLAGS += -g -Wall -Werror
win32 {
LIBPATH += lua/lib
INCLUDEPATH += lua/include
LIBS += -llua51
DEFINES += HOST_WIN32
}
unix {
LIBS += -llua
}
HEADERS += \
widgets.h \
widgets/widget.h \
widgets/label.h \
widgets/lineedit.h \
widgets/multilist.h \
widgets/textedit.h \
widgets/button.h \
widgets/combobox.h \
widgets/listbox.h \
widgets/frame.h \
widgets/groupbox.h \
widgets/radiobutton.h \
widgets/radiobuttons.h \
widgets/checkbox.h \
widgets/window.h
SOURCES += \
editor.cc
|