X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=architektonas.pro;h=4375488b723ae70bb20659bebc3ddd6630551527;hb=97cfdecd62ced6cb1237a9ac6c7cbce2092fde99;hp=5287f4d47c5f5852e3583a0998da257d355c1d78;hpb=676007c81e292079daaa7188f4fbf2757ae77ef8;p=architektonas diff --git a/architektonas.pro b/architektonas.pro index 5287f4d..4375488 100644 --- a/architektonas.pro +++ b/architektonas.pro @@ -2,14 +2,16 @@ # Architektonas Qt project file # # by James Hammons -# Copyright (C) 2011 Underground Software +# Copyright (C) 2020 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 @@ -17,6 +19,10 @@ 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 \ @@ -42,46 +48,47 @@ DEPENDPATH = \ HEADERS = \ src/about.h \ - src/action.h \ src/applicationwindow.h \ - src/arc.h \ - src/circle.h \ - src/connection.h \ - src/container.h \ - src/dimension.h \ + src/baseunittab.h \ + src/blockitemwidget.h \ + src/blockwidget.h \ src/drawingview.h \ - src/drawcircleaction.h \ - src/drawlineaction.h \ - src/ellipse.h \ src/fileio.h \ src/generaltab.h \ - src/line.h \ + src/geometry.h \ + src/global.h \ + src/layerwidget.h \ + src/layeritemwidget.h \ src/main.h \ src/mathconstants.h \ - src/object.h \ + src/objectwidget.h \ + src/penwidget.h \ src/painter.h \ + src/rect.h \ src/settingsdialog.h \ + src/structs.h \ + src/utils.h \ src/vector.h SOURCES = \ src/about.cpp \ - src/action.cpp \ src/applicationwindow.cpp \ - src/arc.cpp \ - src/circle.cpp \ - src/connection.cpp \ - src/container.cpp \ - src/dimension.cpp \ + src/baseunittab.cpp \ + src/blockitemwidget.cpp \ + src/blockwidget.cpp \ src/drawingview.cpp \ - src/drawcircleaction.cpp \ - src/drawlineaction.cpp \ - src/ellipse.cpp \ src/fileio.cpp \ src/generaltab.cpp \ - src/line.cpp \ + src/geometry.cpp \ + src/global.cpp \ + src/layerwidget.cpp \ + src/layeritemwidget.cpp \ src/main.cpp \ - src/object.cpp \ + src/objectwidget.cpp \ + src/penwidget.cpp \ src/painter.cpp \ + src/rect.cpp \ src/settingsdialog.cpp \ + src/utils.cpp \ src/vector.cpp