2018-08-13 15:46:42 +08:00
|
|
|
cmake_minimum_required(VERSION 3.8.2)
|
2018-02-04 18:29:55 +08:00
|
|
|
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
2018-10-25 22:54:09 +08:00
|
|
|
project(posix_common)
|
2018-02-04 18:29:55 +08:00
|
|
|
|
|
|
|
target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/include/posix)
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|