2021-04-18 18:47:28 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Zephyr Example Application
|
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2024-04-02 05:06:19 +00:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
2021-04-18 18:47:28 +00:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
|
2023-05-19 13:18:08 +00:00
|
|
|
project(app LANGUAGES C)
|
2024-04-02 05:06:19 +00:00
|
|
|
target_include_directories(app PRIVATE inc)
|
|
|
|
target_sources(app PRIVATE src/main.c src/canlog.c)
|
2021-04-18 18:47:28 +00:00
|
|
|
|