Build: Rename Harikoff=>Salmanoff
This commit is contained in:
Vendored
+1
-1
@@ -5,7 +5,7 @@
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"${workspaceFolder}/include",
|
||||
"${workspaceFolder}/hcore/include",
|
||||
"${workspaceFolder}/score/include",
|
||||
"/usr/include",
|
||||
"/usr/local/include",
|
||||
"${workspaceFolder}/b/include"
|
||||
|
||||
Vendored
+1
-1
@@ -8,7 +8,7 @@
|
||||
"name": "C++ Launch",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/b/harikoff",
|
||||
"program": "${workspaceFolder}/b/salmanoff",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${workspaceFolder}",
|
||||
|
||||
+7
-7
@@ -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)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user