From a255fd058d052dc7c39088e0ce43056b624b95c5 Mon Sep 17 00:00:00 2001 From: Shawn Nock Date: Tue, 4 May 2021 17:05:31 -0400 Subject: [PATCH] Add nrf-sdk deps --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c000026..f66a6f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,4 +5,8 @@ set(SRC aes.c ctr.c eax.c) -add_library(nrf-crypto STATIC ${SRC}) \ No newline at end of file +add_library(nrf-crypto STATIC ${SRC}) +target_include_directories(nrf-crypto PUBLIC + "${NRF_SDK}/components/softdevice/${SOFTDEVICE_LOWER}/headers" + "${NRF_SDK}/modules/nrfx/mdk" + "${NRF_SDK}/components/toolchain/cmsis/include") \ No newline at end of file