Build: Rename Harikoff=>Salmanoff
This commit is contained in:
Vendored
+1
-1
@@ -5,7 +5,7 @@
|
|||||||
"includePath": [
|
"includePath": [
|
||||||
"${workspaceFolder}/**",
|
"${workspaceFolder}/**",
|
||||||
"${workspaceFolder}/include",
|
"${workspaceFolder}/include",
|
||||||
"${workspaceFolder}/hcore/include",
|
"${workspaceFolder}/score/include",
|
||||||
"/usr/include",
|
"/usr/include",
|
||||||
"/usr/local/include",
|
"/usr/local/include",
|
||||||
"${workspaceFolder}/b/include"
|
"${workspaceFolder}/b/include"
|
||||||
|
|||||||
Vendored
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
"name": "C++ Launch",
|
"name": "C++ Launch",
|
||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/b/harikoff",
|
"program": "${workspaceFolder}/b/salmanoff",
|
||||||
"args": [],
|
"args": [],
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"cwd": "${workspaceFolder}",
|
"cwd": "${workspaceFolder}",
|
||||||
|
|||||||
+7
-7
@@ -1,5 +1,5 @@
|
|||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
project(harikoff VERSION 0.00.002 LANGUAGES CXX)
|
project(salmanoff VERSION 0.00.002 LANGUAGES CXX)
|
||||||
|
|
||||||
include(CMakeDependentOption)
|
include(CMakeDependentOption)
|
||||||
|
|
||||||
@@ -31,7 +31,7 @@ configure_file(
|
|||||||
# Include directories
|
# Include directories
|
||||||
include_directories(
|
include_directories(
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/hcore/include
|
${CMAKE_CURRENT_SOURCE_DIR}/score/include
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/include
|
${CMAKE_CURRENT_BINARY_DIR}/include
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -48,19 +48,19 @@ if(NOT DL_LIBRARY)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Add core components
|
# Add core components
|
||||||
add_subdirectory(hcore)
|
add_subdirectory(score)
|
||||||
add_subdirectory(commonLibs)
|
add_subdirectory(commonLibs)
|
||||||
add_subdirectory(senseApis)
|
add_subdirectory(senseApis)
|
||||||
add_subdirectory(wilzorApis)
|
add_subdirectory(wilzorApis)
|
||||||
|
|
||||||
# Main executable
|
# Main executable
|
||||||
add_executable(harikoff main.cpp)
|
add_executable(salmanoff main.cpp)
|
||||||
target_link_libraries(harikoff
|
target_link_libraries(salmanoff
|
||||||
hcore
|
score
|
||||||
deviceManager
|
deviceManager
|
||||||
senseApis
|
senseApis
|
||||||
${Boost_LIBRARIES}
|
${Boost_LIBRARIES}
|
||||||
${DL_LIBRARY}
|
${DL_LIBRARY}
|
||||||
)
|
)
|
||||||
|
|
||||||
install(TARGETS harikoff DESTINATION bin)
|
install(TARGETS salmanoff DESTINATION bin)
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
# Core library
|
# Core library
|
||||||
add_library(hcore STATIC
|
add_library(score STATIC
|
||||||
mind.cpp
|
mind.cpp
|
||||||
opts.cpp
|
opts.cpp
|
||||||
componentThread.cpp
|
componentThread.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(hcore PUBLIC
|
target_include_directories(score PUBLIC
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/include
|
${CMAKE_CURRENT_SOURCE_DIR}/include
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user