env-test: fix baremetal-fvp_base_revc-sp build
Building of the configuration mentioned in the title fails with
compilation error due to missing headers. This is caused by missing
include directories to TF-A driver headers.
This change fixes the issue by adding the missing TF-A dependency.
Change-Id: Ifb4138c88fae9459d89d4d94c72b0fe792fcead1
Signed-off-by: Gyorgy Szing <Gyorgy.Szing@arm.com>
diff --git a/deployments/env-test/config/baremetal-fvp_base_revc-sp/CMakeLists.txt b/deployments/env-test/config/baremetal-fvp_base_revc-sp/CMakeLists.txt
index a26d5c2..ab371b2 100644
--- a/deployments/env-test/config/baremetal-fvp_base_revc-sp/CMakeLists.txt
+++ b/deployments/env-test/config/baremetal-fvp_base_revc-sp/CMakeLists.txt
@@ -38,6 +38,13 @@
environments/sp
)
+#-------------------------------------------------------------------------------
+# Component configuration specific and common components
+#
+#-------------------------------------------------------------------------------
+include(${TS_ROOT}/external/tf_a/tf-a.cmake)
+add_tfa_dependency(TARGET "env-test")
+
include(../../env/commonsp/env_test_sp.cmake REQUIRED)
include(../../env-test.cmake REQUIRED)
include(../../suites/baremetal-tests.cmake REQUIRED)