The easiest way to integrate the SDK into your C++ project is using CMake FetchContent. This will automatically download the source code and libraries, then link them to your project.
include(FetchContent)set(AIC_SDK_ALLOW_DOWNLOAD ON CACHE BOOL "Allow C SDK download at configure time")FetchContent_Declare( aic_sdk GIT_REPOSITORY https://github.com/ai-coustics/aic-sdk-cpp.git GIT_TAG 0.17.0)FetchContent_MakeAvailable(aic_sdk)target_link_libraries(my_app PRIVATE aic-sdk)