Mercurial > hg > easyhg
annotate easyhg.pro @ 63:2340b00561d2
* Add (but don't yet use) RecentFiles class to replace inline MRU logic
author | Chris Cannam |
---|---|
date | Wed, 17 Nov 2010 14:26:27 +0000 |
parents | 68aebc316898 |
children | 794db9353c7f |
rev | line source |
---|---|
Chris@44 | 1 |
Chris@44 | 2 CONFIG += debug |
Chris@44 | 3 |
Chris@43 | 4 TEMPLATE = app |
Chris@48 | 5 TARGET = easyhg |
Chris@43 | 6 unix { |
Chris@43 | 7 DESTDIR = . |
Chris@43 | 8 } |
Chris@43 | 9 |
Chris@43 | 10 HEADERS = mainwindow.h \ |
Chris@43 | 11 hgexpwidget.h \ |
Chris@43 | 12 common.h \ |
Chris@44 | 13 grapher.h \ |
Chris@43 | 14 hgrunner.h \ |
Chris@43 | 15 settingsdialog.h \ |
Chris@43 | 16 changeset.h \ |
Chris@43 | 17 changesetitem.h \ |
cannam@45 | 18 logparser.h \ |
cannam@45 | 19 panner.h \ |
Chris@46 | 20 panned.h \ |
Chris@50 | 21 connectionitem.h \ |
Chris@53 | 22 textabbrev.h \ |
Chris@53 | 23 dateitem.h \ |
Chris@57 | 24 colourset.h \ |
Chris@63 | 25 debug.h \ |
Chris@63 | 26 recentfiles.h |
Chris@43 | 27 SOURCES = main.cpp \ |
Chris@43 | 28 mainwindow.cpp \ |
Chris@43 | 29 hgexpwidget.cpp \ |
Chris@43 | 30 hgrunner.cpp \ |
Chris@44 | 31 grapher.cpp \ |
Chris@43 | 32 settingsdialog.cpp \ |
Chris@43 | 33 common.cpp \ |
Chris@43 | 34 changeset.cpp \ |
Chris@43 | 35 changesetitem.cpp \ |
cannam@45 | 36 logparser.cpp \ |
cannam@45 | 37 panner.cpp \ |
Chris@46 | 38 panned.cpp \ |
Chris@50 | 39 connectionitem.cpp \ |
Chris@53 | 40 textabbrev.cpp \ |
Chris@53 | 41 dateitem.cpp \ |
Chris@57 | 42 colourset.cpp \ |
Chris@63 | 43 debug.cpp \ |
Chris@63 | 44 recentfiles.cpp |
Chris@43 | 45 |
Chris@62 | 46 macx-* { |
Chris@62 | 47 SOURCES += common_osx.mm |
Chris@62 | 48 } |
Chris@62 | 49 |
Chris@43 | 50 # ! [0] |
Chris@43 | 51 RESOURCES = hgexplorer.qrc |
Chris@43 | 52 win32 { |
Chris@43 | 53 RC_FILE = hgexplorer.rc |
Chris@43 | 54 } |
Chris@43 | 55 |
Chris@46 | 56 QT += network opengl |