Browse Source

wscript: Integrating systemd wscript in configure and build stages.

tags/v1.9.13
David Runge 6 years ago
parent
commit
b05eb32585
No known key found for this signature in database GPG Key ID: 54C28F4FF5A1A949
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      wscript

+ 4
- 0
wscript View File

@@ -200,6 +200,7 @@ def detect_platform(conf):
conf.end_msg(name, color='CYAN')
break


def configure(conf):
conf.load('compiler_cxx')
conf.load('compiler_c')
@@ -248,6 +249,8 @@ def configure(conf):
conf.recurse('dbus')
if conf.env['BUILD_JACKDBUS'] != True:
conf.fatal('jackdbus was explicitly requested but cannot be built')
if conf.env['IS_LINUX']:
conf.recurse('systemd')

conf.recurse('example-clients')

@@ -752,6 +755,7 @@ def build(bld):
bld.recurse('example-clients')
if bld.env['IS_LINUX']:
bld.recurse('man')
bld.recurse('systemd')
if not bld.env['IS_WINDOWS']:
bld.recurse('tests')
if bld.env['BUILD_JACKDBUS']:


Loading…
Cancel
Save