12 lines
289 B
CMake
12 lines
289 B
CMake
# ESP32-S3 Bluetooth SIP Client
|
|
# SIP-Telefon mit Bluetooth und USB-Headset Unterstützung
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
# Setze IDF_TARGET auf ESP32-S3 für USB OTG Support
|
|
set(IDF_TARGET esp32s3)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
project(bluetooth-sip-client)
|