mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 09:35:47 +00:00
This feature is used by scripts/net/run-sample-tests.sh script which connects the Zephyr gPTP sample to Linux gPTP daemon running on a Docker container. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
9 lines
198 B
CMake
9 lines
198 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(gptp)
|
|
|
|
target_sources(app PRIVATE src/main.c src/gptp.c)
|