Remove ethosu_core and ethosu_applications

Interface libraries ethosu_core and ethosu_applications are removed.
Each application shall depend directly on the libraries they need.

Change-Id: I1721ea0fd3c79e74da5e131a60f7aa24277c99ba
diff --git a/applications/baremetal/CMakeLists.txt b/applications/baremetal/CMakeLists.txt
index 37073bb..8e2fa32 100644
--- a/applications/baremetal/CMakeLists.txt
+++ b/applications/baremetal/CMakeLists.txt
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2021 Arm Limited. All rights reserved.
+# SPDX-FileCopyrightText: Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
 #
 # SPDX-License-Identifier: Apache-2.0
 #
@@ -21,7 +21,7 @@
 if (IS_DIRECTORY ${BAREMETAL_PATH})
   ethosu_add_executable_test(baremetal_custom PRIVATE
     SOURCES main.cpp
-    LIBRARIES $<$<TARGET_EXISTS:ethosu_monitor>:ethosu_monitor>)
+    LIBRARIES inference_process $<$<TARGET_EXISTS:ethosu_monitor>:ethosu_monitor>)
   target_include_directories(baremetal_custom PRIVATE ${BAREMETAL_PATH})
 endif()
 
@@ -33,6 +33,6 @@
   get_filename_component(name ${model} NAME)
   ethosu_add_executable_test(baremetal_${name} PRIVATE
     SOURCES main.cpp
-    LIBRARIES $<$<TARGET_EXISTS:ethosu_monitor>:ethosu_monitor>)
+    LIBRARIES inference_process $<$<TARGET_EXISTS:ethosu_monitor>:ethosu_monitor>)
   target_include_directories(baremetal_${name} PRIVATE ${model})
 endforeach()
\ No newline at end of file