ocarina/tests/gui/CMakeLists.txt
Anna Schumaker c49b77a24a gui/treeview: Add a function for accessing the treeview
And rename the widget from "o_treeview" to just "treeview".

I wanted to rename gui/view.c to gui/treeview.c at some point.  I
decided to gradually rework things into a new file to make it easier to
track progress.

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

18 lines
359 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(Treeview)
gui_unit_test(View)
gui_unit_test(Queue)
gui_unit_test(Sidebar)
gui_unit_test(Playlist)
gui_unit_test(Audio)