summaryrefslogtreecommitdiff
path: root/utils/themeeditor/themeeditor.pro
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/themeeditor.pro')
-rw-r--r--utils/themeeditor/themeeditor.pro36
1 files changed, 32 insertions, 4 deletions
diff --git a/utils/themeeditor/themeeditor.pro b/utils/themeeditor/themeeditor.pro
index 48c9f8c24d..42031ff9fa 100644
--- a/utils/themeeditor/themeeditor.pro
+++ b/utils/themeeditor/themeeditor.pro
@@ -1,7 +1,13 @@
1QT += network
2
1# Enabling profiling 3# Enabling profiling
2QMAKE_CXXFLAGS_DEBUG += -pg 4QMAKE_CXXFLAGS_DEBUG += -pg
3QMAKE_LFLAGS_DEBUG += -pg 5QMAKE_LFLAGS_DEBUG += -pg
4 6
7# Adding zlib dependency for QuaZip
8LIBS += -lz
9INCLUDEPATH += zlib
10
5# build in a separate folder. 11# build in a separate folder.
6MYBUILDDIR = $$OUT_PWD/build/ 12MYBUILDDIR = $$OUT_PWD/build/
7OBJECTS_DIR = $$MYBUILDDIR/o 13OBJECTS_DIR = $$MYBUILDDIR/o
@@ -15,6 +21,7 @@ RBBASE_DIR = $$replace(RBBASE_DIR,/utils/themeeditor,)
15INCLUDEPATH += gui 21INCLUDEPATH += gui
16INCLUDEPATH += models 22INCLUDEPATH += models
17INCLUDEPATH += graphics 23INCLUDEPATH += graphics
24INCLUDEPATH += quazip
18 25
19# Stuff for the parse lib 26# Stuff for the parse lib
20libskin_parser.commands = @$(MAKE) \ 27libskin_parser.commands = @$(MAKE) \
@@ -56,7 +63,18 @@ HEADERS += models/parsetreemodel.h \
56 gui/skintimer.h \ 63 gui/skintimer.h \
57 graphics/rbtoucharea.h \ 64 graphics/rbtoucharea.h \
58 gui/newprojectdialog.h \ 65 gui/newprojectdialog.h \
59 models/targetdata.h 66 models/targetdata.h \
67 quazip/zip.h \
68 quazip/unzip.h \
69 quazip/quazipnewinfo.h \
70 quazip/quazipfileinfo.h \
71 quazip/quazipfile.h \
72 quazip/quazip.h \
73 quazip/ioapi.h \
74 quazip/crypt.h \
75 zlib/zlib.h \
76 zlib/zconf.h \
77 gui/fontdownloader.h
60SOURCES += main.cpp \ 78SOURCES += main.cpp \
61 models/parsetreemodel.cpp \ 79 models/parsetreemodel.cpp \
62 models/parsetreenode.cpp \ 80 models/parsetreenode.cpp \
@@ -83,7 +101,14 @@ SOURCES += main.cpp \
83 gui/skintimer.cpp \ 101 gui/skintimer.cpp \
84 graphics/rbtoucharea.cpp \ 102 graphics/rbtoucharea.cpp \
85 gui/newprojectdialog.cpp \ 103 gui/newprojectdialog.cpp \
86 models/targetdata.cpp 104 models/targetdata.cpp \
105 quazip/zip.c \
106 quazip/unzip.c \
107 quazip/quazipnewinfo.cpp \
108 quazip/quazipfile.cpp \
109 quazip/quazip.cpp \
110 quazip/ioapi.c \
111 gui/fontdownloader.cpp
87OTHER_FILES += README \ 112OTHER_FILES += README \
88 resources/windowicon.png \ 113 resources/windowicon.png \
89 resources/appicon.xcf \ 114 resources/appicon.xcf \
@@ -105,14 +130,17 @@ OTHER_FILES += README \
105 resources/lines.png \ 130 resources/lines.png \
106 resources/cursor.xcf \ 131 resources/cursor.xcf \
107 resources/cursor.png \ 132 resources/cursor.png \
108 resources/targetdb 133 resources/targetdb \
134 quazip/README.ROCKBOX \
135 quazip/LICENSE.GPL
109FORMS += gui/editorwindow.ui \ 136FORMS += gui/editorwindow.ui \
110 gui/preferencesdialog.ui \ 137 gui/preferencesdialog.ui \
111 gui/configdocument.ui \ 138 gui/configdocument.ui \
112 gui/skinviewer.ui \ 139 gui/skinviewer.ui \
113 gui/findreplacedialog.ui \ 140 gui/findreplacedialog.ui \
114 gui/skintimer.ui \ 141 gui/skintimer.ui \
115 gui/newprojectdialog.ui 142 gui/newprojectdialog.ui \
143 gui/fontdownloader.ui
116RESOURCES += resources.qrc 144RESOURCES += resources.qrc
117win32:RC_FILE = themeeditor.rc 145win32:RC_FILE = themeeditor.rc
118macx { 146macx {