Mercurial > hg > easyhg
annotate easyhg.pro @ 75:295e3ee4a257
* Allocate a pty for the subprocess, and ask the user for password. Very rudimentary and non-portable.
author | Chris Cannam |
---|---|
date | Fri, 19 Nov 2010 18:39:40 +0000 |
parents | 10eb97683aa9 |
children | d575a8f76a53 |
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 |
Chris@75 | 61 LIBS += -framework Foundation |
Chris@62 | 62 } |
Chris@62 | 63 |
Chris@75 | 64 LIBS += -lutil |
Chris@75 | 65 |
Chris@43 | 66 # ! [0] |
Chris@69 | 67 RESOURCES = easyhg.qrc |
Chris@43 | 68 win32 { |
Chris@69 | 69 RC_FILE = easyhg.rc |
Chris@43 | 70 } |
Chris@43 | 71 |
Chris@46 | 72 QT += network opengl |