-
Francesco Pham authored
- fix bus fault error caused by how common library was linked - close coap client on error - remove base attribute on resource publishing so that base is automatically detected from the request source address Signed-off-by:
Francesco Pham <francesco.pham@huawei.com>
Francesco Pham authored- fix bus fault error caused by how common library was linked - close coap client on error - remove base attribute on resource publishing so that base is automatically detected from the request source address Signed-off-by:
Francesco Pham <francesco.pham@huawei.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CMakeLists.txt 376 B
cmake_minimum_required(VERSION 3.12)
project(eddie-common)
set(VERSION_MAJOR 0)
set(VERSION_MINOR 1)
if(CMAKE_BUILD_TYPE STREQUAL "DEBUG")
add_compile_definitions(DEBUG)
endif()
add_library(${PROJECT_NAME})
target_sources(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/src/LinkFormat.cpp)
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/include)