From 8392f189e22af6068122aa5e0ccfcb7ccc19cf70 Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Mon, 9 Dec 2024 10:57:21 +0100 Subject: [PATCH] Move build of PSA programs to tf-psa-crypto Signed-off-by: Ronald Cron --- programs/CMakeLists.txt | 1 - tf-psa-crypto/programs/CMakeLists.txt | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/programs/CMakeLists.txt b/programs/CMakeLists.txt index 87b9a1b5a7..2c23c48c66 100644 --- a/programs/CMakeLists.txt +++ b/programs/CMakeLists.txt @@ -8,7 +8,6 @@ if (NOT WIN32) endif() add_subdirectory(hash) add_subdirectory(pkey) -add_subdirectory(../tf-psa-crypto/programs/psa ../tf-psa-crypto/programs/psa) add_subdirectory(random) add_subdirectory(ssl) add_subdirectory(test) diff --git a/tf-psa-crypto/programs/CMakeLists.txt b/tf-psa-crypto/programs/CMakeLists.txt index e69de29bb2..c394db6f89 100644 --- a/tf-psa-crypto/programs/CMakeLists.txt +++ b/tf-psa-crypto/programs/CMakeLists.txt @@ -0,0 +1,4 @@ +set(programs_target "${TF_PSA_CRYPTO_TARGET_PREFIX}tfpsacrypto-programs") +add_custom_target(${programs_target}) + +add_subdirectory(psa)