ocarina/core/Sconscript
Anna Schumaker b3d904c128 Artist: Move artist tag code into a new directory
core/tags.cpp was WAY too big, so I moved this code into a new file in
its own directory.  I also created a new unit test just for testing the
Artist tag.

This patch disables the "tags" test since it conflicts with the
tests/core/tags/ directory.  This is okay because the tagdb is gradually
being phased out!

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-12-03 13:02:49 -05:00

9 lines
157 B
Python

#!/usr/bin/python
Import("env")
env.UsePackage("gstreamer-1.0")
env.UsePackage("taglib")
res = Glob("*.cpp") + SConscript("tags/Sconscript")
Return("res")