mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 01:45:22 +00:00
This commit renames the CAN sample directory name from `CAN` to `can` to be consistent with others. Noting that the CAN driver test directory is named `tests/drivers/can`, we have no excuse for naming the CAN driver sample directory `samples/drivers/CAN`. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
10 lines
178 B
CMake
10 lines
178 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
|
project(CAN)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|