OTHER: read support for zipped skins

For now, zipped skins don't show up in the selection dialog yet
But they are loaded when set in the config file
This commit is contained in:
Thomas Frauendorfer 2010-02-09 22:52:04 +01:00
parent ff721650c0
commit 2aabed9491
8 changed files with 497 additions and 7 deletions

View file

@ -36,20 +36,25 @@ POSSIBILITY OF SUCH DAMAGE.
lib_source = """
diriteratorbase.cpp
diriterator.cpp
archiveiterator.cpp
archivereaddevice.cpp
archive_read_open_qiodevice.cpp
"""
def set_options(opt):
pass
def configure(conf):
conf.check_cfg(package='libarchive', args="--cflags --libs")
pass
def build(bld):
obj = bld.new_task_gen(features='qt4 cstaticlib cxx')
obj.target = 'dir_iterator'
obj.install_path = 0 # Don't install
obj.includes = '.'
obj.source = lib_source
obj.uselib = 'QTCORE QTGUI'
obj.uselib = 'QTCORE QTGUI LIBARCHIVE'
obj.export_incdirs = '.'
pass