From 2fccd97f0c541bc2ed0ffc111a39b1caea98f2f9 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Wed, 4 Aug 2021 11:58:17 -0700 Subject: [PATCH] drivers: i2c: slave: group into i2c static library This changes the build command so the I2C EEPROM slave is being grouped into the I2C static library. Signed-off-by: Daniel Leung --- drivers/i2c/slave/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/slave/CMakeLists.txt b/drivers/i2c/slave/CMakeLists.txt index 925e0bc27c5..8645d483033 100644 --- a/drivers/i2c/slave/CMakeLists.txt +++ b/drivers/i2c/slave/CMakeLists.txt @@ -1,3 +1,3 @@ # SPDX-License-Identifier: Apache-2.0 -zephyr_sources_ifdef(CONFIG_I2C_EEPROM_SLAVE eeprom_slave.c) +zephyr_library_sources_ifdef(CONFIG_I2C_EEPROM_SLAVE eeprom_slave.c)