blob: 6242d0e359e0eba0522bedf54a783e6dba24f1f8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
from misc.utility.scons_hints import *
Import("env")
if "alsa" in env and env["alsa"]:
if env["use_sowrap"]:
env.add_source_files(env.drivers_sources, "asound-so_wrap.c")
env.add_source_files(env.drivers_sources, "*.cpp")
|