Skip to content

Commit

Permalink
R576 Implemented Wav source, sink and backend
Browse files Browse the repository at this point in the history
  • Loading branch information
Pekureda committed Dec 27, 2023
1 parent a83726a commit d7378fa
Show file tree
Hide file tree
Showing 12 changed files with 9,890 additions and 0 deletions.
5 changes: 5 additions & 0 deletions 3rdparty/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ is_crosscompiling = (meta.build != meta.host)
# these dependencies are shipped within our repo
vendored_dependencies = [
'hedley',
'dr_wav',
]

# these dependencies should be either installed on system or downloaded and
Expand Down Expand Up @@ -88,6 +89,10 @@ system_dependencies = external_dependencies - autobuild_dependencies
if 'hedley' in vendored_dependencies:
env.Append(CPPPATH=['#3rdparty/hedley'])

# dep: dr_wav
if 'dr_wav' in vendored_dependencies:
env.Append(CPPPATH=['#3rdparty/dr_wav'])

# dep: libuv
if 'libuv' in autobuild_dependencies:
env.BuildThirdParty(thirdparty_versions, 'libuv')
Expand Down
Loading

0 comments on commit d7378fa

Please sign in to comment.