2019-04-06 15:08:09 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2021-08-10 14:44:56 +02:00
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
2020-05-29 06:02:17 +02:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2018-10-25 16:54:09 +02:00
|
|
|
project(eth_native_posix)
|
2018-02-21 15:38:15 +01:00
|
|
|
|
|
|
|
target_sources(app PRIVATE src/main.c)
|
|
|
|
|
2020-02-12 15:00:46 +01:00
|
|
|
include(${ZEPHYR_BASE}/samples/net/common/common.cmake)
|