UNPKG

webbluetooth

Version:

Node.js implementation of the Web Bluetooth Specification

39 lines (30 loc) 1.13 kB
cmake_minimum_required(VERSION 3.21) include(${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/prelude.cmake) project(simpleble_examples) include(${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/epilogue.cmake) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_EXTENSIONS OFF) option(SIMPLEBLE_LOCAL "Use local SimpleBLE" ON) if (SIMPLEBLE_LOCAL) add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/../../simpleble ${CMAKE_BINARY_DIR}/simpleble) else() find_package(simpleble CONFIG REQUIRED) endif() # C++ add_subdirectory(cpp/list_adapters) add_subdirectory(cpp/list_adapters_safe) add_subdirectory(cpp/scan) add_subdirectory(cpp/connect) add_subdirectory(cpp/connect_safe) add_subdirectory(cpp/multiconnect) add_subdirectory(cpp/read) add_subdirectory(cpp/write) add_subdirectory(cpp/notify) add_subdirectory(cpp/notify_multi) # C add_executable(example_connect_c c/connect.c) target_link_libraries(example_connect_c simpleble::simpleble-c) add_executable(example_notify_c c/notify.c) target_link_libraries(example_notify_c simpleble::simpleble-c) add_executable(example_scan_c c/scan.c) target_link_libraries(example_scan_c simpleble::simpleble-c)