mbed-os/drivers/tests/TESTS/mbed_drivers/rtc/CMakeLists.txt

20 lines
477 B
CMake

# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
if(NOT "DEVICE_RTC=1" IN_LIST MBED_TARGET_DEFINITIONS)
set(TEST_SKIPPED "RTC is not supported for this target")
endif()
if(NOT "DEVICE_USTICKER=1" IN_LIST MBED_TARGET_DEFINITIONS)
set(TEST_SKIPPED "Microsecond ticker required")
endif()
mbed_greentea_add_test(
TEST_NAME
mbed-drivers-rtc
TEST_SOURCES
main.cpp
TEST_SKIPPED
${TEST_SKIPPED}
)