CMakeLists.txt 380 B

12345678910111213141516171819
  1. # Web server - smartbotic-server binary
  2. add_executable(smartbotic-server
  3. src/main.cpp
  4. )
  5. target_include_directories(smartbotic-server
  6. PRIVATE
  7. ${CMAKE_CURRENT_SOURCE_DIR}/include
  8. )
  9. target_link_libraries(smartbotic-server
  10. PRIVATE
  11. smartbotic::common
  12. smartbotic::proto
  13. spdlog::spdlog
  14. nlohmann_json::nlohmann_json
  15. sodium
  16. )