1# The following lines of boilerplate have to be in your project's 2# CMakeLists in this exact order for cmake to work correctly 3cmake_minimum_required(VERSION 3.5) 4 5# This example uses an extra component for common functions for Bluetooth HCI layer. 6set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/bluetooth/hci/hci_common_component) 7 8include($ENV{IDF_PATH}/tools/cmake/project.cmake) 9project(ble_adv) 10