CMakeLists.txt 435 B

12345678910111213141516171819
  1. # Common library - shared utilities and types
  2. add_library(smartbotic_common STATIC
  3. src/common.cpp
  4. )
  5. target_include_directories(smartbotic_common
  6. PUBLIC
  7. $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
  8. $<INSTALL_INTERFACE:include>
  9. )
  10. target_link_libraries(smartbotic_common
  11. PUBLIC
  12. spdlog::spdlog
  13. nlohmann_json::nlohmann_json
  14. )
  15. add_library(smartbotic::common ALIAS smartbotic_common)