e86b44751c
Move bc12 under usb, this is not a standalone driver subsystem. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
11 lines
216 B
CMake
11 lines
216 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(device)
|
|
|
|
target_sources(app PRIVATE
|
|
src/charging_mode.c
|
|
src/pd_mode.c
|
|
)
|