ocarina/tests/gui/CMakeLists.txt
Anna Schumaker bc1c462d36 gui/artwork: Add an accessor function for the artwork image
This patch also adds a unit test checking that the image is initialized
properly.  In addition, I simplify things by changing the image widget
to be a direct child of the GtkButton.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2017-04-14 13:58:05 -04:00

19 lines
371 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(Sidebar)
add_subdirectory(playlists/)
gui_unit_test(Playlist)
gui_unit_test(Artwork)
gui_unit_test(Audio)