Comparators: Rename core comparators lib
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
add_library(comparatorCore SHARED
|
||||
comparatorCore.cpp
|
||||
add_library(coreComp SHARED
|
||||
coreComp.cpp
|
||||
)
|
||||
|
||||
set_target_properties(comparatorCore PROPERTIES
|
||||
set_target_properties(coreComp PROPERTIES
|
||||
VERSION ${PROJECT_VERSION}
|
||||
SOVERSION ${PROJECT_VERSION_MAJOR}
|
||||
)
|
||||
|
||||
target_include_directories(comparatorCore PUBLIC
|
||||
target_include_directories(coreComp PUBLIC
|
||||
${CMAKE_SOURCE_DIR}/include
|
||||
${CMAKE_SOURCE_DIR}/smocore/include
|
||||
)
|
||||
|
||||
target_link_libraries(comparatorCore PUBLIC
|
||||
target_link_libraries(coreComp PUBLIC
|
||||
spinscale
|
||||
)
|
||||
|
||||
install(TARGETS comparatorCore
|
||||
install(TARGETS coreComp
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} NAMELINK_SKIP
|
||||
)
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace comparator_lib {
|
||||
namespace core {
|
||||
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 STIM_FEAT_COMPARATOR_TYPE_NAME[] = "stimFeat";
|
||||
static const char SIMULTANEITY_STAMP_COMPARATOR_TYPE_NAME[] =
|
||||
Reference in New Issue
Block a user