Comparators: Rename core comparators lib

This commit is contained in:
2026-06-10 21:43:29 -04:00
parent 8836ab470b
commit 0722ef8209
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -1,21 +1,21 @@
add_library(comparatorCore SHARED add_library(coreComp SHARED
comparatorCore.cpp coreComp.cpp
) )
set_target_properties(comparatorCore PROPERTIES set_target_properties(coreComp PROPERTIES
VERSION ${PROJECT_VERSION} VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR} SOVERSION ${PROJECT_VERSION_MAJOR}
) )
target_include_directories(comparatorCore PUBLIC target_include_directories(coreComp PUBLIC
${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/include
${CMAKE_SOURCE_DIR}/smocore/include ${CMAKE_SOURCE_DIR}/smocore/include
) )
target_link_libraries(comparatorCore PUBLIC target_link_libraries(coreComp PUBLIC
spinscale spinscale
) )
install(TARGETS comparatorCore install(TARGETS coreComp
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} NAMELINK_SKIP LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} NAMELINK_SKIP
) )
@@ -6,7 +6,7 @@ namespace comparator_lib {
namespace core { namespace core {
namespace { namespace {
static const char COMPARATOR_LIB_NAME[] = "comparatorCore"; static const char COMPARATOR_LIB_NAME[] = "coreComp";
static const char BODY_SPOT_COMPARATOR_TYPE_NAME[] = "bodySpot"; static const char BODY_SPOT_COMPARATOR_TYPE_NAME[] = "bodySpot";
static const char STIM_FEAT_COMPARATOR_TYPE_NAME[] = "stimFeat"; static const char STIM_FEAT_COMPARATOR_TYPE_NAME[] = "stimFeat";
static const char SIMULTANEITY_STAMP_COMPARATOR_TYPE_NAME[] = static const char SIMULTANEITY_STAMP_COMPARATOR_TYPE_NAME[] =