ocarina/tests/gui/CMakeLists.txt
Anna Schumaker 6325779062 gui/filter: Create a new file for treeview filter code
Right now filtering is split between queue.c and view.c, which can make
things somewhat complicated.  I think this is a sign that we need a new
file to manage filtering.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2016-11-01 08:51:23 -04:00

17 lines
335 B
CMake

Include(../UnitTest.cmake)
function(gui_unit_test name)
unit_test(Gui ${name} guilib "${corefiles}")
endfunction()
gui_unit_test(Builder)
gui_unit_test(Window)
gui_unit_test(Idle)
gui_unit_test(Model)
gui_unit_test(Filter)
gui_unit_test(View)
gui_unit_test(Queue)
gui_unit_test(Sidebar)
gui_unit_test(Playlist)
gui_unit_test(Audio)