X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=architektonas.pro;h=a82f9a045b1e2672035fec0a7097b982b1918007;hb=ea7712f342020baf61cf33ba98b12140da6aecf7;hp=a634111d69402ccbc0beddaf2fa7e5dd860a7720;hpb=1a13a1484af21f55d5be4847d0b158a43f9c36d2;p=architektonas diff --git a/architektonas.pro b/architektonas.pro index a634111..a82f9a0 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) 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 @@ -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,52 +48,41 @@ 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/drawdimensionaction.h \ - src/drawlineaction.h \ - src/drawtextaction.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/painter.h \ src/settingsdialog.h \ - src/text.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/drawdimensionaction.cpp \ - src/drawlineaction.cpp \ - src/drawtextaction.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/painter.cpp \ src/settingsdialog.cpp \ - src/text.cpp \ + src/utils.cpp \ src/vector.cpp