1#Description: Component timer_manager; user_visible: True
2include_guard(GLOBAL)
3message("component_timer_manager component is included.")
4
5target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE
6    ${CMAKE_CURRENT_LIST_DIR}/fsl_component_timer_manager.c
7)
8
9target_include_directories(${MCUX_SDK_PROJECT_NAME} PUBLIC
10    ${CMAKE_CURRENT_LIST_DIR}/.
11)
12
13#OR Logic component
14if(CONFIG_USE_component_pit_adapter)
15    include(component_pit_adapter)
16endif()
17if(CONFIG_USE_component_ctimer_adapter)
18    include(component_ctimer_adapter)
19endif()
20if(CONFIG_USE_component_tpm_adapter)
21    include(component_tpm_adapter)
22endif()
23if(CONFIG_USE_component_lpit_adapter)
24    include(component_lpit_adapter)
25endif()
26if(CONFIG_USE_component_mrt_adapter)
27    include(component_mrt_adapter)
28endif()
29if(CONFIG_USE_component_ftm_adapter)
30    include(component_ftm_adapter)
31endif()
32if(CONFIG_USE_component_gpt_adapter)
33    include(component_gpt_adapter)
34endif()
35
36include(component_lists)
37