Mercurial > hg > easyhg
annotate easyhg.pro @ 67:be627aeceaed
* Some dialog stubs
author | Chris Cannam |
---|---|
date | Wed, 17 Nov 2010 21:37:16 +0000 |
parents | 794db9353c7f |
children | 6d5a5571caec |
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@67 | 27 startupdialog.h \ |
Chris@67 | 28 repositorydialog.h \ |
Chris@67 | 29 multichoicedialog.h |
Chris@43 | 30 SOURCES = main.cpp \ |
Chris@43 | 31 mainwindow.cpp \ |
Chris@43 | 32 hgexpwidget.cpp \ |
Chris@43 | 33 hgrunner.cpp \ |
Chris@44 | 34 grapher.cpp \ |
Chris@43 | 35 settingsdialog.cpp \ |
Chris@43 | 36 common.cpp \ |
Chris@43 | 37 changeset.cpp \ |
Chris@43 | 38 changesetitem.cpp \ |
cannam@45 | 39 logparser.cpp \ |
cannam@45 | 40 panner.cpp \ |
Chris@46 | 41 panned.cpp \ |
Chris@50 | 42 connectionitem.cpp \ |
Chris@53 | 43 textabbrev.cpp \ |
Chris@53 | 44 dateitem.cpp \ |
Chris@57 | 45 colourset.cpp \ |
Chris@63 | 46 debug.cpp \ |
Chris@64 | 47 recentfiles.cpp \ |
Chris@67 | 48 startupdialog.cpp \ |
Chris@67 | 49 repositorydialog.cpp \ |
Chris@67 | 50 multichoicedialog.cpp |
Chris@43 | 51 |
Chris@62 | 52 macx-* { |
Chris@62 | 53 SOURCES += common_osx.mm |
Chris@62 | 54 } |
Chris@62 | 55 |
Chris@43 | 56 # ! [0] |
Chris@43 | 57 RESOURCES = hgexplorer.qrc |
Chris@43 | 58 win32 { |
Chris@43 | 59 RC_FILE = hgexplorer.rc |
Chris@43 | 60 } |
Chris@43 | 61 |
Chris@46 | 62 QT += network opengl |