Changed the artists view to use artist images

This commit is contained in:
emeric
2024-10-11 19:04:59 +02:00
parent e9f533bb6b
commit 8bdf3b42d0
33 changed files with 439 additions and 311 deletions
+29
View File
@@ -0,0 +1,29 @@
add_library(lmsartwork SHARED
impl/ImageCache.cpp
impl/ArtworkService.cpp
)
target_include_directories(lmsartwork INTERFACE
include
)
target_include_directories(lmsartwork PRIVATE
include
impl
)
target_link_libraries(lmsartwork PRIVATE
lmsav
lmsimage
)
target_link_libraries(lmsartwork PUBLIC
lmsdatabase
lmsimage
lmscore
std::filesystem
)
install(TARGETS lmsartwork DESTINATION ${CMAKE_INSTALL_LIBDIR})