| 12345678910111213141516171819 |
- # Web server - smartbotic-server binary
- add_executable(smartbotic-server
- src/main.cpp
- )
- target_include_directories(smartbotic-server
- PRIVATE
- ${CMAKE_CURRENT_SOURCE_DIR}/include
- )
- target_link_libraries(smartbotic-server
- PRIVATE
- smartbotic::common
- smartbotic::proto
- spdlog::spdlog
- nlohmann_json::nlohmann_json
- sodium
- )
|