Mercurial > hg > easyhg
annotate easyhg.pro @ 57:f583e44d9d31
* Update copyrights; add debug header
author | Chris Cannam |
---|---|
date | Tue, 16 Nov 2010 13:57:30 +0000 |
parents | 3c46b2ac45d3 |
children | 68aebc316898 |
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@57 | 25 debug.h |
Chris@43 | 26 SOURCES = main.cpp \ |
Chris@43 | 27 mainwindow.cpp \ |
Chris@43 | 28 hgexpwidget.cpp \ |
Chris@43 | 29 hgrunner.cpp \ |
Chris@44 | 30 grapher.cpp \ |
Chris@43 | 31 settingsdialog.cpp \ |
Chris@43 | 32 common.cpp \ |
Chris@43 | 33 changeset.cpp \ |
Chris@43 | 34 changesetitem.cpp \ |
cannam@45 | 35 logparser.cpp \ |
cannam@45 | 36 panner.cpp \ |
Chris@46 | 37 panned.cpp \ |
Chris@50 | 38 connectionitem.cpp \ |
Chris@53 | 39 textabbrev.cpp \ |
Chris@53 | 40 dateitem.cpp \ |
Chris@57 | 41 colourset.cpp \ |
Chris@57 | 42 debug.cpp |
Chris@43 | 43 |
Chris@43 | 44 # ! [0] |
Chris@43 | 45 RESOURCES = hgexplorer.qrc |
Chris@43 | 46 win32 { |
Chris@43 | 47 RC_FILE = hgexplorer.rc |
Chris@43 | 48 } |
Chris@43 | 49 |
Chris@46 | 50 QT += network opengl |