diff --git a/comparatorLibs/core/CMakeLists.txt b/comparatorLibs/core/CMakeLists.txt index 28b362d..74c10b0 100644 --- a/comparatorLibs/core/CMakeLists.txt +++ b/comparatorLibs/core/CMakeLists.txt @@ -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 ) diff --git a/comparatorLibs/core/comparatorCore.cpp b/comparatorLibs/core/coreComp.cpp similarity index 98% rename from comparatorLibs/core/comparatorCore.cpp rename to comparatorLibs/core/coreComp.cpp index 2ba96c5..224e1e8 100644 --- a/comparatorLibs/core/comparatorCore.cpp +++ b/comparatorLibs/core/coreComp.cpp @@ -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[] =