Mercurial > hg > easyhg
annotate easyhg.pro @ 74:10eb97683aa9
* Show branch names even for changes with children, if those children are on a different branch
* Pick up remote repo path from local repo via hg paths
* Some work towards breaking down files into various groups based on status
* Add /usr/local/bin to path for hg (temporary hack I hope)
author | Chris Cannam |
---|---|
date | Fri, 19 Nov 2010 14:54:19 +0000 |
parents | eaabc54de103 |
children | 295e3ee4a257 |
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@69 | 10 OBJECTS_DIR = o |
Chris@69 | 11 MOC_DIR = o |
Chris@69 | 12 |
Chris@43 | 13 HEADERS = mainwindow.h \ |
Chris@43 | 14 hgexpwidget.h \ |
Chris@43 | 15 common.h \ |
Chris@44 | 16 grapher.h \ |
Chris@43 | 17 hgrunner.h \ |
Chris@43 | 18 settingsdialog.h \ |
Chris@43 | 19 changeset.h \ |
Chris@43 | 20 changesetitem.h \ |
cannam@45 | 21 logparser.h \ |
cannam@45 | 22 panner.h \ |
Chris@46 | 23 panned.h \ |
Chris@50 | 24 connectionitem.h \ |
Chris@53 | 25 textabbrev.h \ |
Chris@53 | 26 dateitem.h \ |
Chris@57 | 27 colourset.h \ |
Chris@63 | 28 debug.h \ |
Chris@64 | 29 recentfiles.h \ |
Chris@67 | 30 startupdialog.h \ |
Chris@67 | 31 repositorydialog.h \ |
Chris@69 | 32 multichoicedialog.h \ |
Chris@74 | 33 selectablelabel.h \ |
Chris@74 | 34 statparser.h |
Chris@43 | 35 SOURCES = main.cpp \ |
Chris@43 | 36 mainwindow.cpp \ |
Chris@43 | 37 hgexpwidget.cpp \ |
Chris@43 | 38 hgrunner.cpp \ |
Chris@44 | 39 grapher.cpp \ |
Chris@43 | 40 settingsdialog.cpp \ |
Chris@43 | 41 common.cpp \ |
Chris@43 | 42 changeset.cpp \ |
Chris@43 | 43 changesetitem.cpp \ |
cannam@45 | 44 logparser.cpp \ |
cannam@45 | 45 panner.cpp \ |
Chris@46 | 46 panned.cpp \ |
Chris@50 | 47 connectionitem.cpp \ |
Chris@53 | 48 textabbrev.cpp \ |
Chris@53 | 49 dateitem.cpp \ |
Chris@57 | 50 colourset.cpp \ |
Chris@63 | 51 debug.cpp \ |
Chris@64 | 52 recentfiles.cpp \ |
Chris@67 | 53 startupdialog.cpp \ |
Chris@67 | 54 repositorydialog.cpp \ |
Chris@69 | 55 multichoicedialog.cpp \ |
Chris@74 | 56 selectablelabel.cpp \ |
Chris@74 | 57 statparser.cpp |
Chris@43 | 58 |
Chris@62 | 59 macx-* { |
luisf@71 | 60 SOURCES += common_osx.mm |
luisf@71 | 61 QMAKE_LFLAGS += -framework Foundation |
Chris@62 | 62 } |
Chris@62 | 63 |
Chris@43 | 64 # ! [0] |
Chris@69 | 65 RESOURCES = easyhg.qrc |
Chris@43 | 66 win32 { |
Chris@69 | 67 RC_FILE = easyhg.rc |
Chris@43 | 68 } |
Chris@43 | 69 |
Chris@46 | 70 QT += network opengl |