Added missing dependency... strange this worked on Linux.

This commit is contained in:
casey langen 2020-01-26 18:31:49 -08:00
parent abb3208bea
commit 092147aad0
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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()