You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
501 B
19 lines
501 B
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
cmake_minimum_required(VERSION 3.20.0) |
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) |
|
project(philosophers) |
|
|
|
if(DEFINED DEBUG_PRINTF) |
|
zephyr_compile_definitions(DEBUG_PRINTF=${DEBUG_PRINTF}) |
|
endif() |
|
if(DEFINED SAME_PRIO) |
|
zephyr_compile_definitions(SAME_PRIO) |
|
endif() |
|
if(DEFINED STATIC_OBJS) |
|
zephyr_compile_definitions(STATIC_OBJS) |
|
endif() |
|
if(DEFINED FORKS) |
|
zephyr_compile_definitions(FORKS=${FORKS}) |
|
endif() |
|
target_sources(app PRIVATE src/main.c)
|
|
|