Mercurial > hg > easyhg
annotate easyhg.pro @ 50:c76782c14371
* Use specific includes instead of QtCore, QtGui etc; bring in TextAbbrev class
author | Chris Cannam |
---|---|
date | Thu, 11 Nov 2010 22:04:59 +0000 |
parents | 996b3c4037ef |
children | 3c46b2ac45d3 |
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@50 | 22 textabbrev.h |
Chris@43 | 23 SOURCES = main.cpp \ |
Chris@43 | 24 mainwindow.cpp \ |
Chris@43 | 25 hgexpwidget.cpp \ |
Chris@43 | 26 hgrunner.cpp \ |
Chris@44 | 27 grapher.cpp \ |
Chris@43 | 28 settingsdialog.cpp \ |
Chris@43 | 29 common.cpp \ |
Chris@43 | 30 changeset.cpp \ |
Chris@43 | 31 changesetitem.cpp \ |
cannam@45 | 32 logparser.cpp \ |
cannam@45 | 33 panner.cpp \ |
Chris@46 | 34 panned.cpp \ |
Chris@50 | 35 connectionitem.cpp \ |
Chris@50 | 36 textabbrev.cpp |
Chris@43 | 37 |
Chris@43 | 38 # ! [0] |
Chris@43 | 39 RESOURCES = hgexplorer.qrc |
Chris@43 | 40 win32 { |
Chris@43 | 41 RC_FILE = hgexplorer.rc |
Chris@43 | 42 } |
Chris@43 | 43 |
Chris@46 | 44 QT += network opengl |