ocarina/tests/core/tags/CMakeLists.txt
Anna Schumaker ffd09d410c core/tags/album: Add Genre ID to album keys
This allows for representing albums with multiple genres.  I know this
doesn't happen too often, but it doesn't hurt to be covered.  At the
very least, now we have a genre id for constructing new albums!

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2016-09-26 08:07:35 -04:00

12 lines
234 B
CMake

Include(../../UnitTest.cmake)
function(tag_unit_test name)
unit_test(Core/Tags ${name} corelib ${corefiles})
endfunction()
tag_unit_test(Artist)
tag_unit_test(Genre)
tag_unit_test(Album)
tag_unit_test(Library)
tag_unit_test(Track)