diff options
| author | Alex Lisitsyn <[email protected]> | 2021-04-16 13:37:14 +0200 |
|---|---|---|
| committer | Alex Lisitsyn <[email protected]> | 2021-04-16 15:41:42 +0200 |
| commit | f5e02e72ed8e6dae5ce854263fdca86ac7453e3c (patch) | |
| tree | 0364e7fdda32374af84bb989bfb1f961ed0fc878 /examples/host | |
| parent | 2f0cb8b5f1a944187635a58a748ed08738d324a5 (diff) | |
espressif: group boards using target name as a family
`hw\bsp` separate one family folder to esp32s2, esp32s3
add board specific board.cmake file to override board specific options(features)
fix examples and test scripts to use new family approach
Diffstat (limited to 'examples/host')
| -rw-r--r-- | examples/host/cdc_msc_hid/CMakeLists.txt | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/examples/host/cdc_msc_hid/CMakeLists.txt b/examples/host/cdc_msc_hid/CMakeLists.txt index e9360a731..1b2be4565 100644 --- a/examples/host/cdc_msc_hid/CMakeLists.txt +++ b/examples/host/cdc_msc_hid/CMakeLists.txt @@ -7,12 +7,7 @@ set(TOP "../../..") get_filename_component(TOP "${TOP}" REALPATH) # Check for -DFAMILY= -if(FAMILY STREQUAL "esp32sx") - cmake_minimum_required(VERSION 3.5) - include(${TOP}/hw/bsp/${FAMILY}/family.cmake) - project(${PROJECT}) - -elseif(FAMILY STREQUAL "rp2040") +if(FAMILY STREQUAL "rp2040") cmake_minimum_required(VERSION 3.12) include(${TOP}/hw/bsp/${FAMILY}/pico_sdk_import.cmake) |
