fix CppUnit lib name

This commit is contained in:
Günter Obiltschnig
2020-01-12 21:13:18 +01:00
parent ca85c2e084
commit ed21f39b03
2 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ add_library(Poco::CppUnit ALIAS CppUnit)
set_target_properties(CppUnit
PROPERTIES
VERSION "1" SOVERSION "1"
OUTPUT_NAME PocoCppUnit
OUTPUT_NAME CppUnit
DEFINE_SYMBOL CppUnit_EXPORTS
)
target_link_libraries(CppUnit PUBLIC Poco::Foundation)

View File

@@ -69,7 +69,7 @@
#if defined(_MSC_VER) && !defined(POCO_NO_AUTOMATIC_LIBS)
#if !defined(CppUnit_EXPORTS)
#pragma comment(lib, "PocoCppUnit" POCO_LIB_SUFFIX)
#pragma comment(lib, "CppUnit" POCO_LIB_SUFFIX)
#endif
#endif