From 85c2df060df05a9300a223bcb7ebe206bb7684fc Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 13 Aug 2019 15:15:32 +1000 Subject: [PATCH] examples: Mark flash encryption & external flash examples as ESP32 only for now --- examples/security/flash_encryption/CMakeLists.txt | 1 + examples/storage/ext_flash_fatfs/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/security/flash_encryption/CMakeLists.txt b/examples/security/flash_encryption/CMakeLists.txt index 27f6bc4e35..33248e978d 100644 --- a/examples/security/flash_encryption/CMakeLists.txt +++ b/examples/security/flash_encryption/CMakeLists.txt @@ -2,5 +2,6 @@ # CMakeLists in this exact order for cmake to work correctly cmake_minimum_required(VERSION 3.5) +set(SUPPORTED_TARGETS esp32) # Flash encryption not currently supported for ESP32-S2beta include($ENV{IDF_PATH}/tools/cmake/project.cmake) project(flash_encryption) diff --git a/examples/storage/ext_flash_fatfs/CMakeLists.txt b/examples/storage/ext_flash_fatfs/CMakeLists.txt index 51f1129ba3..52b78776cd 100644 --- a/examples/storage/ext_flash_fatfs/CMakeLists.txt +++ b/examples/storage/ext_flash_fatfs/CMakeLists.txt @@ -2,5 +2,6 @@ # in this exact order for cmake to work correctly cmake_minimum_required(VERSION 3.5) +set(SUPPORTED_TARGETS esp32) # external SPI flash driver not currently supported for ESP32-S2beta include($ENV{IDF_PATH}/tools/cmake/project.cmake) project(ext_flash_fatfs)