From d6a0b0301ea872970173569bf43c1ad0476859b1 Mon Sep 17 00:00:00 2001 From: Hayodea Hakol Date: Tue, 22 Jul 2025 06:00:00 -0400 Subject: [PATCH] Build: Rename Harikoff=>Salmanoff --- .vscode/c_cpp_properties.json | 2 +- .vscode/launch.json | 2 +- CMakeLists.txt | 14 +++++++------- hcore/CMakeLists.txt | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 073c8ed..51a1ec9 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -5,7 +5,7 @@ "includePath": [ "${workspaceFolder}/**", "${workspaceFolder}/include", - "${workspaceFolder}/hcore/include", + "${workspaceFolder}/score/include", "/usr/include", "/usr/local/include", "${workspaceFolder}/b/include" diff --git a/.vscode/launch.json b/.vscode/launch.json index a8f4b07..6166ddb 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "C++ Launch", "type": "cppdbg", "request": "launch", - "program": "${workspaceFolder}/b/harikoff", + "program": "${workspaceFolder}/b/salmanoff", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", diff --git a/CMakeLists.txt b/CMakeLists.txt index f40d7cd..03d00b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16) -project(harikoff VERSION 0.00.002 LANGUAGES CXX) +project(salmanoff VERSION 0.00.002 LANGUAGES CXX) include(CMakeDependentOption) @@ -31,7 +31,7 @@ configure_file( # Include directories include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/include - ${CMAKE_CURRENT_SOURCE_DIR}/hcore/include + ${CMAKE_CURRENT_SOURCE_DIR}/score/include ${CMAKE_CURRENT_BINARY_DIR}/include ) @@ -48,19 +48,19 @@ if(NOT DL_LIBRARY) endif() # Add core components -add_subdirectory(hcore) +add_subdirectory(score) add_subdirectory(commonLibs) add_subdirectory(senseApis) add_subdirectory(wilzorApis) # Main executable -add_executable(harikoff main.cpp) -target_link_libraries(harikoff - hcore +add_executable(salmanoff main.cpp) +target_link_libraries(salmanoff + score deviceManager senseApis ${Boost_LIBRARIES} ${DL_LIBRARY} ) -install(TARGETS harikoff DESTINATION bin) +install(TARGETS salmanoff DESTINATION bin) diff --git a/hcore/CMakeLists.txt b/hcore/CMakeLists.txt index bf91a3f..d751aac 100644 --- a/hcore/CMakeLists.txt +++ b/hcore/CMakeLists.txt @@ -1,11 +1,11 @@ # Core library -add_library(hcore STATIC +add_library(score STATIC mind.cpp opts.cpp componentThread.cpp ) -target_include_directories(hcore PUBLIC +target_include_directories(score PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include )