1#Description: Component messaging; user_visible: True
2include_guard(GLOBAL)
3message("component_messaging component is included.")
4
5target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE
6    ${CMAKE_CURRENT_LIST_DIR}/fsl_component_messaging.c
7)
8
9target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC
10    ${CMAKE_CURRENT_LIST_DIR}/.
11)
12
13#OR Logic component
14if(${MCUX_DEVICE} STREQUAL "RW612")
15    include(component_mem_manager_light)
16endif()
17if(${MCUX_DEVICE} STREQUAL "RW610")
18    include(component_mem_manager_light)
19endif()
20if(${MCUX_DEVICE} STREQUAL "MIMXRT1062")
21    include(component_mem_manager)
22endif()
23if(${MCUX_DEVICE} STREQUAL "MIMXRT1176_cm7")
24    include(component_mem_manager)
25endif()
26if(${MCUX_DEVICE} STREQUAL "MIMXRT685S_cm33")
27    include(component_mem_manager)
28endif()
29if(${MCUX_DEVICE} STREQUAL "MIMXRT595S_cm33")
30    include(component_mem_manager)
31endif()
32
33