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