jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
342B

  1. #! /usr/bin/env python
  2. # encoding: utf-8
  3. def build(bld):
  4. obj = bld.create_obj('cpp', 'program')
  5. obj.includes = ['../common/jack']
  6. obj.source = ['../common/Jackdmp.cpp']
  7. obj.uselib = 'PTHREAD DL RT'
  8. obj.uselib_local = 'serverlib'
  9. obj.target = 'jackd'
  10. def configure(conf):
  11. conf.check_pkg('dbus-1', mandatory=True)