File: SCsub

package info (click to toggle)
zytrax 0%2Bgit20201215-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,488 kB
  • sloc: cpp: 41,800; ansic: 3,387; makefile: 8; sh: 3
file content (20 lines) | stat: -rw-r--r-- 487 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Import('env');
Export('env');

targets=[]

if (env["enable_lv2"]):
	env.add_sources(targets,"lv2/*.cpp")
	env.add_sources(targets,"lv2/*.c")

if (env["enable_vst2"]):
	env.add_sources(targets,"vst2/*.cpp")
if (env["enable_rtaudio"]):
	env.add_sources(targets,"rtaudio/*.cpp")
	env.add_sources(targets,"rtaudio/rtaudio/*.cpp")

if (env["enable_rtmidi"]):
	env.add_sources(targets,"rtmidi/*.cpp")
	env.add_sources(targets,"rtmidi/rtmidi/*.cpp")

env.libs+=env.Library('drivers', targets);