cmake_minimum_required(VERSION 3.21)

project(EXAMPLE_LIST_ADAPTERS)

message("-- [INFO] Building Example")

add_executable(example_list_adapters
    list_adapters.cpp
)

target_link_libraries(example_list_adapters simpleble::simpleble)
