Core: shorten the include path of header files under secure_fw/core/include
Directly include header files under secure_fw/core/include instead
of including the whole relative paths.
It can save maintenance cost when code structure changes.
Change-Id: I3a54915b988368ca736a008056bdeb7eaa94990a
Signed-off-by: David Hu <david.hu@arm.com>
diff --git a/secure_fw/services/crypto/CMakeLists.inc b/secure_fw/services/crypto/CMakeLists.inc
index 5f68827..9c98e6a 100644
--- a/secure_fw/services/crypto/CMakeLists.inc
+++ b/secure_fw/services/crypto/CMakeLists.inc
@@ -60,6 +60,7 @@
#Setting include directories
embedded_include_directories(PATH ${TFM_ROOT_DIR} ABSOLUTE)
embedded_include_directories(PATH ${TFM_ROOT_DIR}/interface/include ABSOLUTE)
+ embedded_include_directories(PATH ${TFM_ROOT_DIR}/secure_fw/core/include ABSOLUTE)
if (CRYPTO_ENGINE_MBEDTLS)
embedded_include_directories(PATH ${MBEDTLS_INSTALL_DIR}/include ABSOLUTE)
endif()