# # Architektonas Qt project file # # by James Hammons # Copyright (C) 2015 Underground Software # # See the README and GPLv3 files for licensing and warranty information # CONFIG += qt warn_on release debug #CONFIG += qt warn_on release RESOURCES += res/architektonas.qrc #LIBS += -Ldxflib/lib -ldxf QT += widgets # We stuff all the intermediate crap into obj/ so it won't confuse us mere mortals ;-) OBJECTS_DIR = obj MOC_DIR = obj RCC_DIR = obj UI_DIR = obj # Icon on Win32, Mac win32 { LIBS += res/architektonas-icon.o } macx { ICON = architektonas-icon.icns } INCLUDEPATH += \ src # fparser \ # dxflib/include \ # src/mainapp \ # src/actions \ # src/base \ # src/widgets \ # src/forms DEPENDPATH = \ src # fparser \ # dxflib/include \ # src/mainapp \ # src/actions \ # src/base \ # src/widgets \ # src/forms #HEADERS = \ # fparser/fparser.hh HEADERS = \ src/about.h \ src/applicationwindow.h \ src/baseunittab.h \ src/blockitemwidget.h \ src/blockwidget.h \ src/drawingview.h \ src/fileio.h \ src/generaltab.h \ src/geometry.h \ src/global.h \ src/layerwidget.h \ src/layeritemwidget.h \ src/main.h \ src/mathconstants.h \ src/painter.h \ src/settingsdialog.h \ src/structs.h \ src/utils.h \ src/vector.h SOURCES = \ src/about.cpp \ src/applicationwindow.cpp \ src/baseunittab.cpp \ src/blockitemwidget.cpp \ src/blockwidget.cpp \ src/drawingview.cpp \ src/fileio.cpp \ src/generaltab.cpp \ src/geometry.cpp \ src/global.cpp \ src/layerwidget.cpp \ src/layeritemwidget.cpp \ src/main.cpp \ src/painter.cpp \ src/settingsdialog.cpp \ src/utils.cpp \ src/vector.cpp