We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50303b8 commit 76d88f1Copy full SHA for 76d88f1
lib/posix/CMakeLists.txt
@@ -3,8 +3,10 @@
3
4
zephyr_interface_library_named(posix_subsys)
5
6
+set(posix_subsys ${IMAGE}posix_subsys)
7
+
8
if(CONFIG_POSIX_API)
- target_include_directories(posix_subsys INTERFACE ${ZEPHYR_BASE}/include/posix)
9
+ target_include_directories(${posix_subsys} INTERFACE ${ZEPHYR_BASE}/include/posix)
10
endif()
11
12
zephyr_library()
@@ -23,4 +25,4 @@ zephyr_library_sources_ifdef(CONFIG_PTHREAD_IPC pthread_key.c)
23
25
zephyr_library_sources_ifdef(CONFIG_POSIX_MQUEUE mqueue.c)
24
26
zephyr_library_sources_ifdef(CONFIG_POSIX_FS fs.c)
27
-zephyr_library_link_libraries(posix_subsys)
28
+zephyr_library_link_libraries(${posix_subsys})
0 commit comments