OTHER: revert change to build resources as static library
If resources are build as static libraries they have to be initializes manually I have to add some code do that automatically
This commit is contained in:
parent
7501a912c9
commit
0ba2803f26
3 changed files with 3 additions and 4 deletions
|
@ -6,7 +6,6 @@
|
|||
<file>CleanAMP/monoster.png</file>
|
||||
<file>CleanAMP/PLEDIT.TXT</file>
|
||||
<file>CleanAMP/ReadMe.txt</file>
|
||||
<file>CleanAMP/Thumbs.db</file>
|
||||
<file>CleanAMP/VIDEO.png</file>
|
||||
<file>CleanAMP/Volume.png</file>
|
||||
<file>CleanAMP/balance.png</file>
|
||||
|
|
|
@ -100,7 +100,7 @@ def build(bld):
|
|||
obj.target = 'promoe'
|
||||
obj.includes = incdirs
|
||||
obj.source = sources
|
||||
obj.uselib_local = 'promoe_lib promoe_data'
|
||||
obj.uselib_local = 'promoe_lib'
|
||||
obj.uselib = 'QTCORE QTGUI AVAHI-CLIENT AVAHI-QT4'
|
||||
pass
|
||||
|
||||
|
|
4
wscript
4
wscript
|
@ -65,7 +65,7 @@ def configure(conf):
|
|||
os.path.join(conf.env['PROMOE_DATADIR'], 'Skins'))
|
||||
|
||||
conf.sub_config('lib')
|
||||
conf.sub_config('data')
|
||||
# conf.sub_config('data')
|
||||
conf.sub_config('src')
|
||||
|
||||
conf.write_config_header('promoe_config.h')
|
||||
|
@ -75,7 +75,7 @@ def configure(conf):
|
|||
|
||||
def build(bld):
|
||||
bld.add_subdirs('lib')
|
||||
bld.add_subdirs('data')
|
||||
# bld.add_subdirs('data')
|
||||
bld.add_subdirs('src')
|
||||
|
||||
bld.install_files('${MANDIR}/man1', 'promoe.1')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue