1#Description: Driver phy-device-lan8720a; user_visible: True 2include_guard(GLOBAL) 3message("driver_phy-device-lan8720a component is included.") 4 5target_sources(${MCUX_SDK_PROJECT_NAME} PRIVATE 6 ${CMAKE_CURRENT_LIST_DIR}/fsl_phylan8720a.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 "LPC54628") 15 include(driver_phy-common_LPC54628) 16endif() 17if(${MCUX_DEVICE} STREQUAL "LPC54S018") 18 include(driver_phy-common_LPC54S018) 19endif() 20if(${MCUX_DEVICE} STREQUAL "LPC54S018M") 21 include(driver_phy-common_LPC54S018M) 22endif() 23 24