Mercurial > hg > easyhg
annotate easyhg.pro @ 172:b6dd1ee0e486
* Fix failure to recognise local uncommitted changes when an untracked file was selected
* Win32: Look in installed location (currently just the location of the present .exe) for executables as well as in path
* Win32: Search for easyhg extension in same way as executables
* Win32: Set installed location to path when running hg commands (for dependent DLLs)
author | Chris Cannam |
---|---|
date | Wed, 15 Dec 2010 22:07:31 +0000 |
parents | edab92f3ea0b |
children | 6def8bf3be44 |
rev | line source |
---|---|
Chris@172 | 1 |
Chris@172 | 2 CONFIG += debug |
Chris@172 | 3 |
Chris@172 | 4 TEMPLATE = app |
Chris@172 | 5 TARGET = easyhg |
Chris@172 | 6 unix { |
Chris@172 | 7 DESTDIR = . |
Chris@172 | 8 } |
Chris@172 | 9 |
Chris@172 | 10 TRANSLATIONS = easyhg_en.ts |
Chris@172 | 11 |
Chris@172 | 12 OBJECTS_DIR = o |
Chris@172 | 13 MOC_DIR = o |
Chris@172 | 14 |
Chris@172 | 15 HEADERS = mainwindow.h \ |
Chris@172 | 16 hgtabwidget.h \ |
Chris@172 | 17 common.h \ |
Chris@172 | 18 grapher.h \ |
Chris@172 | 19 hgrunner.h \ |
Chris@172 | 20 changeset.h \ |
Chris@172 | 21 changesetitem.h \ |
Chris@172 | 22 changesetdetailitem.h \ |
Chris@172 | 23 logparser.h \ |
Chris@172 | 24 panner.h \ |
Chris@172 | 25 panned.h \ |
Chris@172 | 26 connectionitem.h \ |
Chris@172 | 27 textabbrev.h \ |
Chris@172 | 28 dateitem.h \ |
Chris@172 | 29 colourset.h \ |
Chris@172 | 30 debug.h \ |
Chris@172 | 31 recentfiles.h \ |
Chris@172 | 32 startupdialog.h \ |
Chris@172 | 33 repositorydialog.h \ |
Chris@172 | 34 multichoicedialog.h \ |
Chris@172 | 35 selectablelabel.h \ |
Chris@172 | 36 filestates.h \ |
Chris@172 | 37 filestatuswidget.h \ |
Chris@172 | 38 confirmcommentdialog.h \ |
Chris@172 | 39 hgaction.h \ |
Chris@172 | 40 historywidget.h \ |
Chris@172 | 41 changesetscene.h \ |
Chris@172 | 42 incomingdialog.h \ |
Chris@172 | 43 uncommitteditem.h |
Chris@172 | 44 SOURCES = main.cpp \ |
Chris@172 | 45 mainwindow.cpp \ |
Chris@172 | 46 hgtabwidget.cpp \ |
Chris@172 | 47 hgrunner.cpp \ |
Chris@172 | 48 grapher.cpp \ |
Chris@172 | 49 common.cpp \ |
Chris@172 | 50 changeset.cpp \ |
Chris@172 | 51 changesetdetailitem.cpp \ |
Chris@172 | 52 changesetitem.cpp \ |
Chris@172 | 53 logparser.cpp \ |
Chris@172 | 54 panner.cpp \ |
Chris@172 | 55 panned.cpp \ |
Chris@172 | 56 connectionitem.cpp \ |
Chris@172 | 57 textabbrev.cpp \ |
Chris@172 | 58 dateitem.cpp \ |
Chris@172 | 59 colourset.cpp \ |
Chris@172 | 60 debug.cpp \ |
Chris@172 | 61 recentfiles.cpp \ |
Chris@172 | 62 startupdialog.cpp \ |
Chris@172 | 63 repositorydialog.cpp \ |
Chris@172 | 64 multichoicedialog.cpp \ |
Chris@172 | 65 selectablelabel.cpp \ |
Chris@172 | 66 filestates.cpp \ |
Chris@172 | 67 filestatuswidget.cpp \ |
Chris@172 | 68 confirmcommentdialog.cpp \ |
Chris@172 | 69 historywidget.cpp \ |
Chris@172 | 70 changesetscene.cpp \ |
Chris@172 | 71 incomingdialog.cpp \ |
Chris@172 | 72 uncommitteditem.cpp |
Chris@172 | 73 |
Chris@172 | 74 macx-* { |
Chris@172 | 75 SOURCES += common_osx.mm |
Chris@172 | 76 LIBS += -framework Foundation |
Chris@172 | 77 } |
Chris@172 | 78 |
Chris@172 | 79 linux* { |
Chris@172 | 80 LIBS += -lutil |
Chris@172 | 81 } |
Chris@172 | 82 |
Chris@172 | 83 win* { |
Chris@172 | 84 LIBS += -lSecur32 |
Chris@172 | 85 } |
Chris@172 | 86 |
Chris@172 | 87 # ! [0] |
Chris@172 | 88 RESOURCES = easyhg.qrc |
Chris@172 | 89 #win32 { |
Chris@172 | 90 # RC_FILE = easyhg.rc |
Chris@172 | 91 #} |
Chris@172 | 92 |
Chris@172 | 93 QT += network |