diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-07-30 01:26:10 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-07-30 01:26:10 +0000 |
| commit | f8dd370ff8ece4d32589767dc4a9b43398c1cf7e (patch) | |
| tree | 15fe9b11ee498b0e4d9c9ef301ffc15e7cc7d43f /utils/themeeditor/themeeditor.pro | |
| parent | 5848f5f72464708aa08cb0bb5060349ae7577265 (diff) | |
| download | rockbox-f8dd370ff8ece4d32589767dc4a9b43398c1cf7e.zip rockbox-f8dd370ff8ece4d32589767dc4a9b43398c1cf7e.tar.gz rockbox-f8dd370ff8ece4d32589767dc4a9b43398c1cf7e.tar.bz2 rockbox-f8dd370ff8ece4d32589767dc4a9b43398c1cf7e.tar.xz | |
Theme Editor: Began implementing syntax highlighting. What I've accomplished so far isn't particularly useful for anything other than testing, so at the moment it will only function if activated in the preferences dialog
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27624 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/themeeditor.pro')
| -rw-r--r-- | utils/themeeditor/themeeditor.pro | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/utils/themeeditor/themeeditor.pro b/utils/themeeditor/themeeditor.pro index a58b878..bf2be3a 100644 --- a/utils/themeeditor/themeeditor.pro +++ b/utils/themeeditor/themeeditor.pro @@ -1,11 +1,10 @@ -#Setting the binary name +# Setting the binary name TARGET = rbthemeeditor VERSION = 0.5 - -CONFIG(debug){ +CONFIG(debug) { REVISION = $$system(svnversion) - VERSION=$$join(VERSION,,,r) - VERSION=$$join(VERSION,,,$$REVISION) + VERSION = $$join(VERSION,,,r) + VERSION = $$join(VERSION,,,$$REVISION) } # Adding network support @@ -106,7 +105,8 @@ HEADERS += models/parsetreemodel.h \ qtfindreplacedialog/findform.h \ qtfindreplacedialog/finddialog.h \ gui/projectexporter.h \ - gui/targetdownloader.h + gui/targetdownloader.h \ + gui/syntaxcompleter.h SOURCES += main.cpp \ models/parsetreemodel.cpp \ models/parsetreenode.cpp \ @@ -146,7 +146,8 @@ SOURCES += main.cpp \ qtfindreplacedialog/findform.cpp \ qtfindreplacedialog/finddialog.cpp \ gui/projectexporter.cpp \ - gui/targetdownloader.cpp + gui/targetdownloader.cpp \ + gui/syntaxcompleter.cpp OTHER_FILES += README \ resources/windowicon.png \ resources/appicon.xcf \ @@ -171,7 +172,8 @@ OTHER_FILES += README \ resources/targetdb \ quazip/README.ROCKBOX \ quazip/LICENSE.GPL \ - qtfindreplacedialog/dialogs.pro + qtfindreplacedialog/dialogs.pro \ + resources/tagdb FORMS += gui/editorwindow.ui \ gui/preferencesdialog.ui \ gui/configdocument.ui \ |