mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
rbutilQt: Font and Doom installation. Also some fixes to the signals in the installers.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14044 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b853fa27bf
commit
e90999fcf1
10 changed files with 899 additions and 562 deletions
|
|
@ -1,68 +1,74 @@
|
|||
SOURCES += rbutilqt.cpp \
|
||||
main.cpp \
|
||||
install.cpp \
|
||||
httpget.cpp \
|
||||
configure.cpp \
|
||||
zip/zip.cpp \
|
||||
zip/unzip.cpp \
|
||||
installzip.cpp \
|
||||
installbootloader.cpp \
|
||||
installbl.cpp \
|
||||
../ipodpatcher/ipodpatcher.c \
|
||||
../sansapatcher/sansapatcher.c \
|
||||
irivertools/irivertools.cpp \
|
||||
irivertools/md5sum.cpp
|
||||
|
||||
|
||||
HEADERS += rbutilqt.h \
|
||||
settings.h \
|
||||
install.h \
|
||||
httpget.h \
|
||||
configure.h \
|
||||
zip/zip.h \
|
||||
zip/unzip.h \
|
||||
zip/zipentry_p.h \
|
||||
zip/unzip_p.h \
|
||||
zip/zip_p.h \
|
||||
version.h \
|
||||
installzip.h \
|
||||
installbootloader.h \
|
||||
installbl.h \
|
||||
../ipodpatcher/ipodpatcher.h \
|
||||
../ipodpatcher/ipodio.h \
|
||||
../ipodpatcher/parttypes.h \
|
||||
../sansapatcher/sansapatcher.h \
|
||||
../sansapatcher/sansaio.h \
|
||||
irivertools/irivertools.h \
|
||||
irivertools/md5sum.h \
|
||||
irivertools/h100sums.h \
|
||||
irivertools/h120sums.h \
|
||||
irivertools/h300sums.h
|
||||
|
||||
TEMPLATE = app
|
||||
CONFIG += release \
|
||||
warn_on \
|
||||
thread \
|
||||
qt
|
||||
TARGET = rbutilqt
|
||||
FORMS += rbutilqtfrm.ui \
|
||||
aboutbox.ui \
|
||||
installfrm.ui \
|
||||
installprogressfrm.ui \
|
||||
configurefrm.ui \
|
||||
installbootloaderfrm.ui
|
||||
RESOURCES += rbutilqt.qrc
|
||||
|
||||
TRANSLATIONS += rbutil_de.ts
|
||||
QT += network
|
||||
DEFINES += RBUTIL
|
||||
|
||||
win32{
|
||||
SOURCES += ../ipodpatcher/ipodio-win32.c
|
||||
SOURCES += ../sansapatcher/sansaio-win32.c
|
||||
}
|
||||
|
||||
unix{
|
||||
SOURCES += ../ipodpatcher/ipodio-posix.c
|
||||
SOURCES += ../sansapatcher/sansaio-posix.c
|
||||
}
|
||||
SOURCES += rbutilqt.cpp \
|
||||
main.cpp \
|
||||
install.cpp \
|
||||
httpget.cpp \
|
||||
configure.cpp \
|
||||
zip/zip.cpp \
|
||||
zip/unzip.cpp \
|
||||
installzip.cpp \
|
||||
installbootloader.cpp \
|
||||
installbl.cpp \
|
||||
installzipwindow.cpp \
|
||||
../ipodpatcher/ipodpatcher.c \
|
||||
../sansapatcher/sansapatcher.c \
|
||||
irivertools/irivertools.cpp \
|
||||
irivertools/md5sum.cpp
|
||||
|
||||
|
||||
HEADERS += rbutilqt.h \
|
||||
settings.h \
|
||||
install.h \
|
||||
httpget.h \
|
||||
configure.h \
|
||||
zip/zip.h \
|
||||
zip/unzip.h \
|
||||
zip/zipentry_p.h \
|
||||
zip/unzip_p.h \
|
||||
zip/zip_p.h \
|
||||
version.h \
|
||||
installzip.h \
|
||||
installbootloader.h \
|
||||
installbl.h \
|
||||
installzipwindow.h \
|
||||
../ipodpatcher/ipodpatcher.h \
|
||||
../ipodpatcher/ipodio.h \
|
||||
../ipodpatcher/parttypes.h \
|
||||
../sansapatcher/sansapatcher.h \
|
||||
../sansapatcher/sansaio.h \
|
||||
irivertools/irivertools.h \
|
||||
irivertools/md5sum.h \
|
||||
irivertools/h100sums.h \
|
||||
irivertools/h120sums.h \
|
||||
irivertools/h300sums.h
|
||||
|
||||
TEMPLATE = app
|
||||
CONFIG += release \
|
||||
warn_on \
|
||||
thread \
|
||||
qt
|
||||
TARGET = rbutilqt
|
||||
|
||||
FORMS += rbutilqtfrm.ui \
|
||||
aboutbox.ui \
|
||||
installfrm.ui \
|
||||
installprogressfrm.ui \
|
||||
configurefrm.ui \
|
||||
installbootloaderfrm.ui \
|
||||
installzipfrm.ui
|
||||
|
||||
|
||||
RESOURCES += rbutilqt.qrc
|
||||
|
||||
TRANSLATIONS += rbutil_de.ts
|
||||
QT += network
|
||||
DEFINES += RBUTIL
|
||||
|
||||
win32{
|
||||
SOURCES += ../ipodpatcher/ipodio-win32.c
|
||||
SOURCES += ../sansapatcher/sansaio-win32.c
|
||||
}
|
||||
|
||||
unix{
|
||||
SOURCES += ../ipodpatcher/ipodio-posix.c
|
||||
SOURCES += ../sansapatcher/sansaio-posix.c
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue