From a3016fbf0d50bfe82e69a657328ef76370227979 Mon Sep 17 00:00:00 2001 From: deva Date: Thu, 24 Mar 2011 12:53:39 +0000 Subject: Initial commit of docgen. --- client/docgen/docgen.pro | 104 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 client/docgen/docgen.pro (limited to 'client/docgen/docgen.pro') diff --git a/client/docgen/docgen.pro b/client/docgen/docgen.pro new file mode 100644 index 0000000..d495439 --- /dev/null +++ b/client/docgen/docgen.pro @@ -0,0 +1,104 @@ +# -*- Makefile -*- + +TEMPLATE = app +TARGET = +DEPENDPATH += . +INCLUDEPATH += . .. ../widgets +QT += core gui xml svg network sql +RESOURCES += ../client.qrc + +include(../../VERSION) +DEFINES+=VERSION=\\\"$$VERSION\\\" + +win32 { + LIBPATH += lua/lib + INCLUDEPATH += lua/include + LIBS += -llua51 + DEFINES += HOST_WIN32 +} + +unix { + LIBS += -llua + LIBS += -lqjson +} + +# Input +SOURCES += \ + docgen.cc \ + genimage.cc \ + generate.cc \ + parse.cc \ + ../debug.cc \ + ../lua.cc \ + ../luawidget.cc \ + ../luadb.cc \ + ../messagebox.cc \ + ../macrowindow.cc \ + ../collapser.cc \ + ../netcom.cc \ + ../resumewidget.cc \ + ../mainwindow.cc \ + ../macro.cc \ + ../header.cc \ + ../viewer.cc \ + ../macrodrawer.cc \ + ../widgets/common.cc \ + ../widgets/widget.cc \ + ../widgets/label.cc \ + ../widgets/lineedit.cc \ + ../widgets/multilist.cc \ + ../widgets/textedit.cc \ + ../widgets/button.cc \ + ../widgets/combobox.cc \ + ../widgets/datetime.cc \ + ../widgets/listbox.cc \ + ../widgets/frame.cc \ + ../widgets/groupbox.cc \ + ../widgets/radiobutton.cc \ + ../widgets/radiobuttons.cc \ + ../widgets/checkbox.cc \ + ../widgets/checkgroupbox.cc \ + ../widgets/window.cc \ + ../widgets/altcombobox.cc \ + ../widgets/metawidget.cc + +HEADERS += \ + genimage.h \ + generate.h \ + parse.h \ + doc.h \ + ../debug.h \ + ../lua.h \ + ../luawidget.h \ + ../luadb.h \ + ../messagebox.h \ + ../macrowindow.h \ + ../collapser.h \ + ../netcom.h \ + ../resumewidget.h \ + ../mainwindow.h \ + ../entity.h \ + ../macro.h \ + ../header.h \ + ../viewer.h \ + ../macrodrawer.h \ + ../widgets.h \ + ../widgets/common.h \ + ../widgets/widget.h \ + ../widgets/label.h \ + ../widgets/lineedit.h \ + ../widgets/multilist.h \ + ../widgets/textedit.h \ + ../widgets/button.h \ + ../widgets/datetime.h \ + ../widgets/combobox.h \ + ../widgets/listbox.h \ + ../widgets/frame.h \ + ../widgets/groupbox.h \ + ../widgets/radiobutton.h \ + ../widgets/radiobuttons.h \ + ../widgets/checkbox.h \ + ../widgets/checkgroupbox.h \ + ../widgets/window.h \ + ../widgets/altcombobox.h \ + ../widgets/metawidget.h -- cgit v1.2.3