mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
First stab at porting rbutil to Qt4. Currently only installing a current or archived build is working. To build, run qmake && make in the source folder. Beware that the syntax of rbutil.ini has slightly changed. Caching of the downloaded files is also still missing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13989 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
aa643db434
commit
680408f4ac
46 changed files with 10385 additions and 0 deletions
35
rbutil/rbutilqt/rbutilqt.pro
Normal file
35
rbutil/rbutilqt/rbutilqt.pro
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
SOURCES += rbutilqt.cpp \
|
||||
main.cpp \
|
||||
install.cpp \
|
||||
httpget.cpp \
|
||||
configure.cpp \
|
||||
zip/zip.cpp \
|
||||
zip/unzip.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
|
||||
|
||||
TEMPLATE = app
|
||||
CONFIG += release \
|
||||
warn_on \
|
||||
thread \
|
||||
qt
|
||||
TARGET = rbutilqt
|
||||
FORMS += rbutilqtfrm.ui \
|
||||
aboutbox.ui \
|
||||
installfrm.ui \
|
||||
installprogressfrm.ui \
|
||||
configurefrm.ui
|
||||
RESOURCES += rbutilqt.qrc
|
||||
|
||||
TRANSLATIONS += rbutil_de.ts
|
||||
QT += network
|
||||
Loading…
Add table
Add a link
Reference in a new issue