Mercurial > hg > easyhg
annotate easyhg.pro @ 53:3c46b2ac45d3
* Put proper labels &c in changeset items; colour branches and users; etc
author | Chris Cannam |
---|---|
date | Fri, 12 Nov 2010 16:48:18 +0000 |
parents | c76782c14371 |
children | f583e44d9d31 |
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@53 | 24 colourset.h |
Chris@43 | 25 SOURCES = main.cpp \ |
Chris@43 | 26 mainwindow.cpp \ |
Chris@43 | 27 hgexpwidget.cpp \ |
Chris@43 | 28 hgrunner.cpp \ |
Chris@44 | 29 grapher.cpp \ |
Chris@43 | 30 settingsdialog.cpp \ |
Chris@43 | 31 common.cpp \ |
Chris@43 | 32 changeset.cpp \ |
Chris@43 | 33 changesetitem.cpp \ |
cannam@45 | 34 logparser.cpp \ |
cannam@45 | 35 panner.cpp \ |
Chris@46 | 36 panned.cpp \ |
Chris@50 | 37 connectionitem.cpp \ |
Chris@53 | 38 textabbrev.cpp \ |
Chris@53 | 39 dateitem.cpp \ |
Chris@53 | 40 colourset.cpp |
Chris@43 | 41 |
Chris@43 | 42 # ! [0] |
Chris@43 | 43 RESOURCES = hgexplorer.qrc |
Chris@43 | 44 win32 { |
Chris@43 | 45 RC_FILE = hgexplorer.rc |
Chris@43 | 46 } |
Chris@43 | 47 |
Chris@46 | 48 QT += network opengl |