summaryrefslogtreecommitdiff
path: root/utils/themeeditor/themeeditor.pro
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-17 05:37:01 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-17 05:37:01 +0000
commitca564287ee3f48945d45c7d92be7a83452f53745 (patch)
treed6e502bb604f925240a742b3bac2c813a98c447b /utils/themeeditor/themeeditor.pro
parentba07b2055c7eb8f2add96f55cb52b40b9ccb3d63 (diff)
downloadrockbox-ca564287ee3f48945d45c7d92be7a83452f53745.zip
rockbox-ca564287ee3f48945d45c7d92be7a83452f53745.tar.gz
rockbox-ca564287ee3f48945d45c7d92be7a83452f53745.tar.bz2
rockbox-ca564287ee3f48945d45c7d92be7a83452f53745.tar.xz
Theme Editor: Moved source files into subdirectories
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26876 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/themeeditor.pro')
-rw-r--r--utils/themeeditor/themeeditor.pro74
1 files changed, 40 insertions, 34 deletions
diff --git a/utils/themeeditor/themeeditor.pro b/utils/themeeditor/themeeditor.pro
index ef3f499..213bcd8 100644
--- a/utils/themeeditor/themeeditor.pro
+++ b/utils/themeeditor/themeeditor.pro
@@ -4,37 +4,43 @@ OBJECTS_DIR = $$MYBUILDDIR/o
UI_DIR = $$MYBUILDDIR/ui
MOC_DIR = $$MYBUILDDIR/moc
RCC_DIR = $$MYBUILDDIR/rcc
-HEADERS += tag_table.h \
- symbols.h \
- skin_parser.h \
- skin_scan.h \
- skin_debug.h \
- parsetreemodel.h \
- parsetreenode.h \
- editorwindow.h \
- skinhighlighter.h \
- skindocument.h \
- preferencesdialog.h \
- codeeditor.h \
- projectmodel.h \
- tabcontent.h \
- configdocument.h \
- skinviewer.h
-SOURCES += tag_table.c \
- skin_parser.c \
- skin_scan.c \
- skin_debug.c \
+
+#Include directories
+INCLUDEPATH += gui
+INCLUDEPATH += parser
+INCLUDEPATH += models
+
+HEADERS += parser/tag_table.h \
+ parser/symbols.h \
+ parser/skin_parser.h \
+ parser/skin_scan.h \
+ parser/skin_debug.h \
+ models/parsetreemodel.h \
+ models/parsetreenode.h \
+ gui/editorwindow.h \
+ gui/skinhighlighter.h \
+ gui/skindocument.h \
+ gui/preferencesdialog.h \
+ gui/codeeditor.h \
+ models/projectmodel.h \
+ gui/tabcontent.h \
+ gui/configdocument.h \
+ gui/skinviewer.h
+SOURCES += parser/tag_table.c \
+ parser/skin_parser.c \
+ parser/skin_scan.c \
+ parser/skin_debug.c \
main.cpp \
- parsetreemodel.cpp \
- parsetreenode.cpp \
- editorwindow.cpp \
- skinhighlighter.cpp \
- skindocument.cpp \
- preferencesdialog.cpp \
- codeeditor.cpp \
- projectmodel.cpp \
- configdocument.cpp \
- skinviewer.cpp
+ models/parsetreemodel.cpp \
+ models/parsetreenode.cpp \
+ gui/editorwindow.cpp \
+ gui/skinhighlighter.cpp \
+ gui/skindocument.cpp \
+ gui/preferencesdialog.cpp \
+ gui/codeeditor.cpp \
+ models/projectmodel.cpp \
+ gui/configdocument.cpp \
+ gui/skinviewer.cpp
OTHER_FILES += README \
resources/windowicon.png \
resources/appicon.xcf \
@@ -42,8 +48,8 @@ OTHER_FILES += README \
resources/document-save.png \
resources/document-open.png \
resources/document-new.png
-FORMS += editorwindow.ui \
- preferencesdialog.ui \
- configdocument.ui \
- skinviewer.ui
+FORMS += gui/editorwindow.ui \
+ gui/preferencesdialog.ui \
+ gui/configdocument.ui \
+ gui/skinviewer.ui
RESOURCES += resources.qrc