Mercurial > hg > easyhg
annotate easyhg.pro @ 64:794db9353c7f
* Start rejigging the settings/repo-path dialog setup: startup dialog now asks for user name and email only
author | Chris Cannam |
---|---|
date | Wed, 17 Nov 2010 17:49:16 +0000 |
parents | 2340b00561d2 |
children | be627aeceaed |
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@63 | 25 debug.h \ |
Chris@64 | 26 recentfiles.h \ |
Chris@64 | 27 startupdialog.h |
Chris@43 | 28 SOURCES = main.cpp \ |
Chris@43 | 29 mainwindow.cpp \ |
Chris@43 | 30 hgexpwidget.cpp \ |
Chris@43 | 31 hgrunner.cpp \ |
Chris@44 | 32 grapher.cpp \ |
Chris@43 | 33 settingsdialog.cpp \ |
Chris@43 | 34 common.cpp \ |
Chris@43 | 35 changeset.cpp \ |
Chris@43 | 36 changesetitem.cpp \ |
cannam@45 | 37 logparser.cpp \ |
cannam@45 | 38 panner.cpp \ |
Chris@46 | 39 panned.cpp \ |
Chris@50 | 40 connectionitem.cpp \ |
Chris@53 | 41 textabbrev.cpp \ |
Chris@53 | 42 dateitem.cpp \ |
Chris@57 | 43 colourset.cpp \ |
Chris@63 | 44 debug.cpp \ |
Chris@64 | 45 recentfiles.cpp \ |
Chris@64 | 46 startupdialog.cpp |
Chris@43 | 47 |
Chris@62 | 48 macx-* { |
Chris@62 | 49 SOURCES += common_osx.mm |
Chris@62 | 50 } |
Chris@62 | 51 |
Chris@43 | 52 # ! [0] |
Chris@43 | 53 RESOURCES = hgexplorer.qrc |
Chris@43 | 54 win32 { |
Chris@43 | 55 RC_FILE = hgexplorer.rc |
Chris@43 | 56 } |
Chris@43 | 57 |
Chris@46 | 58 QT += network opengl |