ocarina/core/Sconscript
Anna Schumaker 92806c5201 core/tags/track: Clean up constructors
I replace the standard and copy constructors with one that tags a track
during construction.  This lets me clean up a lot of code, and keep
tagging functions internal to the track class.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2015-12-10 16:41:33 -05:00

8 lines
141 B
Python

#!/usr/bin/python
Import("env")
env.UsePackage("taglib_c")
res = Glob("*.cpp") + Glob("*.c") + SConscript("tags/Sconscript")
Return("res")