diff --git a/src/core/library/LocalMetadataProxy.h b/src/core/library/LocalMetadataProxy.h index 1ff8e428c..25a385fca 100644 --- a/src/core/library/LocalMetadataProxy.h +++ b/src/core/library/LocalMetadataProxy.h @@ -151,7 +151,7 @@ namespace musik { namespace core { namespace db { namespace local { const int* sortOrders, int count) override; - virtual void Release(); + virtual void Release() override; private: musik::core::ILibraryPtr library; diff --git a/src/core_c/CMakeLists.txt b/src/core_c/CMakeLists.txt index 253276a01..f8fdf3c7c 100644 --- a/src/core_c/CMakeLists.txt +++ b/src/core_c/CMakeLists.txt @@ -17,7 +17,7 @@ set_target_properties(musikcore_c PROPERTIES if (${LINK_STATICALLY} MATCHES "true") find_library(EVLIB NAMES libev.a ev) - target_link_libraries(musikcore_c ${musikcube_LINK_LIBS} ${EVLIB}) + target_link_libraries(musikcore_c ${musikcube_LINK_LIBS} ${EVLIB} musikcore) else() - target_link_libraries(musikcore_c ${musikcube_LINK_LIBS} ev) + target_link_libraries(musikcore_c ${musikcube_LINK_LIBS} ev musikcore) endif()