mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 07:42:53 +00:00
Having posix headers in the default include path causes issues with the posix port. Move to a sub-directory to avoid any conflicts. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
7 lines
232 B
CMake
7 lines
232 B
CMake
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
|
|
project(NONE)
|
|
|
|
target_include_directories(app PRIVATE $ENV{ZEPHYR_BASE}/include/posix)
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|