| 123456789101112131415161718 |
- # Database service - smartbotic-db binary
- add_executable(smartbotic-db
- src/main.cpp
- )
- target_include_directories(smartbotic-db
- PRIVATE
- ${CMAKE_CURRENT_SOURCE_DIR}/include
- )
- target_link_libraries(smartbotic-db
- PRIVATE
- smartbotic::common
- smartbotic::proto
- spdlog::spdlog
- sodium
- )
|