From 4d7617cbf20985b7cf2231675d8aadd01f77c3d2 Mon Sep 17 00:00:00 2001 From: deva Date: Wed, 2 Jul 2008 07:49:31 +0000 Subject: Added disable/enable methods on widgets and exposed them to lua. --- client/editor/editor.pro | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 client/editor/editor.pro (limited to 'client/editor/editor.pro') diff --git a/client/editor/editor.pro b/client/editor/editor.pro new file mode 100644 index 0000000..513c977 --- /dev/null +++ b/client/editor/editor.pro @@ -0,0 +1,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 -- cgit v1.2.3