# -*- Makefile -*- TEMPLATE = app TARGET = pracro DEPENDPATH += . widgets INCLUDEPATH += . widgets RESOURCES += client.qrc QT += core gui network xml sql # For debugging QMAKE_CXXFLAGS += -g -Wall -Werror win32 { LIBPATH += lua/lib INCLUDEPATH += lua/include LIBS += -llua51 DEFINES += HOST_WIN32 CONFIG += console } unix { LIBS += -llua } HEADERS += \ formatparser.h \ lua.h \ macro.h \ macrowindow.h \ netcom.h \ widgetbuilder.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/dbwidget.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 += \ pracro.cc \ formatparser.cc \ lua.cc \ macro.cc \ macrowindow.cc \ netcom.cc \ widgetbuilder.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/dbwidget.cc \ widgets/listbox.cc \ widgets/frame.cc \ widgets/groupbox.cc \ widgets/radiobutton.cc \ widgets/radiobuttons.cc \ widgets/checkbox.cc \ widgets/window.cc