Rename RSS to RSE.
The RSS is an outdated name. Update all source files, file and directory
names to use the proper name.
Change-Id: Ibcc9f655fe5e27c8bd64c27474b2fbcd896a849e
Signed-off-by: Gyorgy Szing <gyorgy.szing@arm.com>
diff --git a/components/messaging/rse_comms/sp/component.cmake b/components/messaging/rse_comms/sp/component.cmake
new file mode 100644
index 0000000..79b6a69
--- /dev/null
+++ b/components/messaging/rse_comms/sp/component.cmake
@@ -0,0 +1,27 @@
+#-------------------------------------------------------------------------------
+# Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+#-------------------------------------------------------------------------------
+if (NOT DEFINED TGT)
+ message(FATAL_ERROR "mandatory parameter TGT is not defined.")
+endif()
+
+set_property(TARGET ${TGT} APPEND PROPERTY PUBLIC_HEADER
+ "${CMAKE_CURRENT_LIST_DIR}/rse_comms_messenger_api.h"
+ )
+
+target_sources(${TGT} PRIVATE
+ "${CMAKE_CURRENT_LIST_DIR}/rse_comms_messenger.c"
+ "${CMAKE_CURRENT_LIST_DIR}/rse_comms_platform.c"
+ )
+
+target_include_directories(${TGT}
+ PUBLIC
+ "${CMAKE_CURRENT_LIST_DIR}"
+ )
+
+set_property(TARGET ${TGT} APPEND PROPERTY TS_PLATFORM_DRIVER_DEPENDENCIES
+ "mhu"
+)