aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristofer Jonsson <kristofer.jonsson@arm.com>2023-01-12 14:50:33 +0100
committerKristofer Jonsson <kristofer.jonsson@arm.com>2023-01-12 15:11:31 +0100
commit9c3d66407a48916d9c07c045ca4680ac2a905615 (patch)
tree6238ebf574fea84bb6462209046589b2e6bbf118
parent023b1eb953873ed5d813e4cbcb5b0bf63eb70568 (diff)
downloadethos-u-core-software-9c3d66407a48916d9c07c045ca4680ac2a905615.tar.gz
Reinsert INFERENCE_PROCESS_OPS_RESOLVER
Reinsert INFERENCE_PROCESS_OPS_RESOLVER that was accidentally removed in previous commit. Change-Id: I56b84aadc44b2a5f3c9e35e1fce8ce51036048ba
-rw-r--r--applications/inference_process/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/applications/inference_process/CMakeLists.txt b/applications/inference_process/CMakeLists.txt
index a26a1e2..db07748 100644
--- a/applications/inference_process/CMakeLists.txt
+++ b/applications/inference_process/CMakeLists.txt
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2019-2022 Arm Limited. All rights reserved.
+# SPDX-FileCopyrightText: Copyright 2019-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -33,3 +33,7 @@ if (TARGET ethosu_log)
endif()
target_sources(inference_process INTERFACE src/inference_process.cpp)
+
+if (DEFINED INFERENCE_PROCESS_OPS_RESOLVER)
+ target_compile_definitions(inference_process INTERFACE INFERENCE_PROCESS_OPS_RESOLVER=${INFERENCE_PROCESS_OPS_RESOLVER})
+endif()