mirror of
https://github.com/espressif/esp-idf.git
synced 2026-05-30 09:36:36 +03:00
13 lines
435 B
CMake
13 lines
435 B
CMake
#This is the project CMakeLists.txt file for the test subproject
|
|
cmake_minimum_required(VERSION 3.22)
|
|
|
|
set(COMPONENTS main)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(efuse_test)
|
|
|
|
message(STATUS "Checking efuse registers are not read-write by half-word")
|
|
include($ENV{IDF_PATH}/tools/ci/check_register_rw_half_word.cmake)
|
|
check_register_rw_half_word(SOC_MODULES "efuse"
|
|
HAL_MODULES "efuse")
|