cmake_minimum_required(VERSION 3.21)

project(EXAMPLE_PAIR)

message("-- [INFO] Building Example")
add_executable(example_pair pair.cpp)
target_link_libraries(example_pair simplebluez::simplebluez pthread)
