tests: link settings_test_fs with kernel

This is needed because Zephyr libraries created after
`find_package(Zephyr)` are not pure Zephyr libraries, as they are not
in the `whole-archive` linking grouping.

Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
This commit is contained in:
Torsten Rasmussen 2021-01-21 10:35:17 +01:00 committed by Anas Nashif
commit a1e8456bfe

View file

@ -12,3 +12,4 @@ add_dependencies(settings_test_fs
FILE(GLOB fssources *.c )
zephyr_library_sources(${fssources})
zephyr_library_link_libraries(kernel)