44 lines
780 B
CMake
44 lines
780 B
CMake
pkg_check_modules(Taglib REQUIRED IMPORTED_TARGET taglib)
|
|
|
|
if(BUILD_TESTING)
|
|
add_subdirectory(test)
|
|
endif()
|
|
|
|
if (BUILD_BENCHMARKS)
|
|
add_subdirectory(bench)
|
|
endif()
|
|
|
|
add_library(lmsmetadata STATIC
|
|
impl/ArtistInfo.cpp
|
|
impl/AudioFileParser.cpp
|
|
impl/avformat/AvFormatImageReader.cpp
|
|
impl/avformat/AvFormatTagReader.cpp
|
|
impl/avformat/Utils.cpp
|
|
impl/Lyrics.cpp
|
|
impl/PlayList.cpp
|
|
impl/taglib/TagLibImageReader.cpp
|
|
impl/taglib/TagLibTagReader.cpp
|
|
impl/taglib/Utils.cpp
|
|
impl/Utils.cpp
|
|
)
|
|
|
|
target_include_directories(lmsmetadata INTERFACE
|
|
include
|
|
)
|
|
|
|
target_include_directories(lmsmetadata PRIVATE
|
|
include
|
|
impl
|
|
)
|
|
|
|
target_link_libraries(lmsmetadata PRIVATE
|
|
lmsav
|
|
PkgConfig::Taglib
|
|
pugixml::pugixml
|
|
)
|
|
|
|
target_link_libraries(lmsmetadata PUBLIC
|
|
lmscore
|
|
std::filesystem
|
|
)
|