OTHER: Handle resources from data subdir in a cleaner way

This commit is contained in:
Thomas Frauendorfer 2009-09-02 01:25:56 +02:00
parent 0ba2803f26
commit 1854945831
66 changed files with 12 additions and 11 deletions

View file

@ -38,10 +38,10 @@ def set_options(opt):
def configure(conf):
pass
def build(bld):
obj = bld.new_task_gen('qt4', 'staticlib', 'cxx')
obj = bld.new_task_gen('qt4', 'cxx')
obj.target = 'promoe_data'
obj.install_path = 0 # Don't install
obj.source = 'Almond-blue.qrc'
obj.source = 'skins/Almond-blue.qrc'
obj.uselib = 'QTCORE'
pass