# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.28.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(i2c_at24)

# Board vendors should provide boards/<BOARD>.overlay (or pass
# EXTRA_DTC_OVERLAY_FILE) with an AT24-compatible EEPROM description.
# Zephyr's standard overlay discovery handles that automatically.
target_sources(app PRIVATE src/i2c_at24.c)
