ocarina/tests/gui/CMakeLists.txt
Anna Schumaker 133efc0515 gui/window: Add a function for getting the window
This is cleaner and easier than calling into the gtk builder directly.
I bumped up the window layer so other gui components can use it.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2016-10-31 07:44:34 -04:00

16 lines
313 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(Model)
gui_unit_test(View)
gui_unit_test(Queue)
gui_unit_test(Idle)
gui_unit_test(Sidebar)
gui_unit_test(Playlist)
gui_unit_test(Audio)