forked from len0rd/rockbox
Theme Editor: Moved source files into subdirectories
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26876 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ba07b2055c
commit
ca564287ee
35 changed files with 40 additions and 34 deletions
|
@ -4,37 +4,43 @@ OBJECTS_DIR = $$MYBUILDDIR/o
|
||||||
UI_DIR = $$MYBUILDDIR/ui
|
UI_DIR = $$MYBUILDDIR/ui
|
||||||
MOC_DIR = $$MYBUILDDIR/moc
|
MOC_DIR = $$MYBUILDDIR/moc
|
||||||
RCC_DIR = $$MYBUILDDIR/rcc
|
RCC_DIR = $$MYBUILDDIR/rcc
|
||||||
HEADERS += tag_table.h \
|
|
||||||
symbols.h \
|
#Include directories
|
||||||
skin_parser.h \
|
INCLUDEPATH += gui
|
||||||
skin_scan.h \
|
INCLUDEPATH += parser
|
||||||
skin_debug.h \
|
INCLUDEPATH += models
|
||||||
parsetreemodel.h \
|
|
||||||
parsetreenode.h \
|
HEADERS += parser/tag_table.h \
|
||||||
editorwindow.h \
|
parser/symbols.h \
|
||||||
skinhighlighter.h \
|
parser/skin_parser.h \
|
||||||
skindocument.h \
|
parser/skin_scan.h \
|
||||||
preferencesdialog.h \
|
parser/skin_debug.h \
|
||||||
codeeditor.h \
|
models/parsetreemodel.h \
|
||||||
projectmodel.h \
|
models/parsetreenode.h \
|
||||||
tabcontent.h \
|
gui/editorwindow.h \
|
||||||
configdocument.h \
|
gui/skinhighlighter.h \
|
||||||
skinviewer.h
|
gui/skindocument.h \
|
||||||
SOURCES += tag_table.c \
|
gui/preferencesdialog.h \
|
||||||
skin_parser.c \
|
gui/codeeditor.h \
|
||||||
skin_scan.c \
|
models/projectmodel.h \
|
||||||
skin_debug.c \
|
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 \
|
main.cpp \
|
||||||
parsetreemodel.cpp \
|
models/parsetreemodel.cpp \
|
||||||
parsetreenode.cpp \
|
models/parsetreenode.cpp \
|
||||||
editorwindow.cpp \
|
gui/editorwindow.cpp \
|
||||||
skinhighlighter.cpp \
|
gui/skinhighlighter.cpp \
|
||||||
skindocument.cpp \
|
gui/skindocument.cpp \
|
||||||
preferencesdialog.cpp \
|
gui/preferencesdialog.cpp \
|
||||||
codeeditor.cpp \
|
gui/codeeditor.cpp \
|
||||||
projectmodel.cpp \
|
models/projectmodel.cpp \
|
||||||
configdocument.cpp \
|
gui/configdocument.cpp \
|
||||||
skinviewer.cpp
|
gui/skinviewer.cpp
|
||||||
OTHER_FILES += README \
|
OTHER_FILES += README \
|
||||||
resources/windowicon.png \
|
resources/windowicon.png \
|
||||||
resources/appicon.xcf \
|
resources/appicon.xcf \
|
||||||
|
@ -42,8 +48,8 @@ OTHER_FILES += README \
|
||||||
resources/document-save.png \
|
resources/document-save.png \
|
||||||
resources/document-open.png \
|
resources/document-open.png \
|
||||||
resources/document-new.png
|
resources/document-new.png
|
||||||
FORMS += editorwindow.ui \
|
FORMS += gui/editorwindow.ui \
|
||||||
preferencesdialog.ui \
|
gui/preferencesdialog.ui \
|
||||||
configdocument.ui \
|
gui/configdocument.ui \
|
||||||
skinviewer.ui
|
gui/skinviewer.ui
|
||||||
RESOURCES += resources.qrc
|
RESOURCES += resources.qrc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue