-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwscript
86 lines (66 loc) · 2.98 KB
/
wscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# encoding: utf-8
# vim:set syntax=python expandtab :
"""
This file is a part of Promoe, an XMMS2 Client
Copyright (C) 2009-2016 XMMS2 Team
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
"""
from waflib.TaskGen import feature, before, after
import os
# Automatically pick up include paths
@feature('cxx')
@after('process_source')
@before('apply_incpaths')
def add_includes_paths(self):
incs = set(self.to_list(getattr(self, 'includes', '')))
for x in self.compiled_tasks:
incs.add(x.inputs[0].parent.path_from(self.path))
self.includes = list(incs)
APPVERSION = '0.2.0-devel'
APPNAME = 'promoe'
def options(opt):
opt.load('gnu_dirs compiler_cxx')
try:
opt.load('qt5')
except:
opt.load('qt4')
def configure(conf):
conf.load('gnu_dirs compiler_cxx')
try:
conf.load('qt5')
except:
conf.load('qt4')
conf.check_cfg(package='xmms2-client-cpp', args='--cflags --libs')
conf.check_cfg(package='libarchive', args="--cflags --libs", mandatory=False)
conf.check_cfg(package='avahi-client', args="--cflags --libs", mandatory=False)
conf.check_cfg(package='avahi-qt4', args="--cflags --libs", mandatory=False)
# if bld.env['LIB_AVAHI-QT4'] and bld.env['LIB_AVAHI-CLIENT']:
# conf.define('HAVE_SERVERBROWSER', 1)
conf.env.append_unique('CXXFLAGS', ['-fPIC', '-DPIC'])
conf.define('VERSION', APPVERSION)
conf.define('PROMOE_VERSION', APPVERSION)
conf.define('PROMOE_DATADIR', os.path.join(conf.env['DATADIR'], 'promoe'))
conf.define('PROMOE_SKINDIR', os.path.join(conf.env['DATADIR'], 'promoe', 'skins'))
conf.write_config_header('promoe_config.h')
def build(bld):
bld.recurse('backend_xmmsclient++ dir_iterator data src')