# CROSS COMPILER SETTING
SET(CMAKE_SYSTEM_NAME Generic)
CMAKE_MINIMUM_REQUIRED (VERSION 3.10.0)

# THE VERSION NUMBER
SET (Tutorial_VERSION_MAJOR 1)
SET (Tutorial_VERSION_MINOR 0)

# ENABLE ASM
ENABLE_LANGUAGE(ASM)

SET(CMAKE_STATIC_LIBRARY_PREFIX)
SET(CMAKE_STATIC_LIBRARY_SUFFIX)

SET(CMAKE_EXECUTABLE_LIBRARY_PREFIX)
SET(CMAKE_EXECUTABLE_LIBRARY_SUFFIX)

# CURRENT DIRECTORY
SET(ProjDirPath ${CMAKE_CURRENT_SOURCE_DIR})

SET(EXECUTABLE_OUTPUT_PATH ${ProjDirPath}/${CMAKE_BUILD_TYPE})
SET(LIBRARY_OUTPUT_PATH ${ProjDirPath}/${CMAKE_BUILD_TYPE})


project(audio_profile)

set(MCUX_SDK_PROJECT_NAME audio_profile.elf)

include(${ProjDirPath}/flags.cmake)

include(${ProjDirPath}/config.cmake)

add_executable(${MCUX_SDK_PROJECT_NAME} 
"${ProjDirPath}/../app_config.h"
"${ProjDirPath}/../sdmmc_config.c"
"${ProjDirPath}/../sdmmc_config.h"
"${ProjDirPath}/../edgefast_bluetooth_config.h"
"${ProjDirPath}/../cmd.c"
"${ProjDirPath}/../cmd.h"
"${ProjDirPath}/../main.c"
"${ProjDirPath}/../app_music_control.c"
"${ProjDirPath}/../app_music_control.h"
"${ProjDirPath}/../FreeRTOSConfig.h"
"${ProjDirPath}/../app_a2dp.c"
"${ProjDirPath}/../app_a2dp.h"
"${ProjDirPath}/../app_common.c"
"${ProjDirPath}/../app_common.h"
"${ProjDirPath}/../remote_control.c"
"${ProjDirPath}/../config_files/aws_wifi_config.h"
"${ProjDirPath}/../../audio.conf.h"
"${ProjDirPath}/../../audio_cfg.h"
"${ProjDirPath}/../../os_cfg.h"
"${ProjDirPath}/../../app_streamer.c"
"${ProjDirPath}/../../app_streamer.h"
"${ProjDirPath}/../../streamer_pcm.c"
"${ProjDirPath}/../../streamer_pcm.h"
"${ProjDirPath}/../../usb_host_fatfs.c"
"${ProjDirPath}/../../usb_host_fatfs.h"
"${ProjDirPath}/../../usb_host_config.h"
"${ProjDirPath}/../../ffconf.h"
"${ProjDirPath}/../config_files/aws_mbedtls_config.h"
"${ProjDirPath}/../config_files/aws_demo_config.h"
"${ProjDirPath}/../config_files/iot_secure_sockets_config.h"
"${ProjDirPath}/../config_files/aws_shadow_config.h"
"${ProjDirPath}/../config_files/FreeRTOSIPConfig.h"
"${ProjDirPath}/../config_files/iot_config.h"
"${ProjDirPath}/../config_files/core_mqtt_config.h"
"${ProjDirPath}/../config_files/core_pkcs11_config.h"
"${ProjDirPath}/../config_files/aws_iot_network_config.h"
"${ProjDirPath}/../config_files/shadow_config.h"
"${ProjDirPath}/../board.c"
"${ProjDirPath}/../board.h"
"${ProjDirPath}/../pca6416.c"
"${ProjDirPath}/../pca6416.h"
"${ProjDirPath}/../pca9530.c"
"${ProjDirPath}/../pca9530.h"
"${ProjDirPath}/../clock_config.c"
"${ProjDirPath}/../clock_config.h"
"${ProjDirPath}/../pin_mux.c"
"${ProjDirPath}/../pin_mux.h"
"${ProjDirPath}/../bt_module_config.h"
"${ProjDirPath}/../wifi_bt_config.c"
"${ProjDirPath}/../wifi_bt_config.h"
"${ProjDirPath}/../dcd.c"
"${ProjDirPath}/../dcd.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_sdio.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_11ac.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_11ac.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_11d.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_11h.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_11h.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_11n.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_11n.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_11n_aggr.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_11n_aggr.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_11n_rxreorder.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_11n_rxreorder.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_api.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_cfp.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_cmdevt.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_decl.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_fw.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_glue.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_ieee.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_init.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_init.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_ioctl.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_join.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_join.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_main.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_meas.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_misc.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_remap_mem_operations.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_scan.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_sdio.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_shim.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_sta_cmd.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_sta_cmdresp.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_sta_event.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_sta_ioctl.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_sta_rx.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_txrx.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_uap.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_uap_cmdevent.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_uap_ioctl.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_util.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/mlan_wmm.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl/mlan_wmm.h"
"${ProjDirPath}/../../../../../../middleware/wifi/port/os/os.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi.c"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wifidriver/wifi.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi_common.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wifidriver/wifi_events.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi_pwrmgr.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi-debug.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi-debug.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wifidriver/wifi-decl.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wifidriver/mlan_sdio_api.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi-internal.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi-mem.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi-sdio.c"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi-sdio.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/wifi-uap.c"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wlcmgr/wlan.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wlcmgr/wlan_11d.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/port/os/wm_os.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wm_utils.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wmerrno.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wmlog.h"
"${ProjDirPath}/../../../../../../middleware/wifi/incl/wmtypes.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifi_bt_firmware/sd8801_wlan.h"
"${ProjDirPath}/../../../../../../middleware/wifi/wifi_bt_firmware/sduartIW416_wlan_bt.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/controller/configs/lwipopts.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/controller/configs/lwippools.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/controller/configs/wifi_config.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/platform/bt_ble_platform.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/platform/bt_ble_platform.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/platform/bt_ble_settings.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/platform/bt_ble_settings.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/bt_db_gen.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL/eBT_assert.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL/eBT_config.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL/eBT_debug_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL/eBT_fops.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL/eBT_os.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL/eBT_serial.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL/eBT_timer.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_a2dp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_assigned_numbers.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_at_parser_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_att_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_avctp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_avdtp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_avrcp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_avrcp_ca_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_bip_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_bnep_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_bottom_half.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_bpp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_common.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_ctn_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_dbase_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_device_queue.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_error.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_ftp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_gap_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_gatt_db_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_hci_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_hdp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_hfp_ag_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_hfp_unit_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_hid_device_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_hid_host_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_irobex_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_jpl_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_map_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_mcap_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_obex_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_opp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_pan_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_pbap_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_racp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_rfcomm_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_sap_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_sdp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_security.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_sm_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_smp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_snoop.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_spp_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_status.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_storage.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/BT_version.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/fsm_defines.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/fsm_engine.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/gatt_defines.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/hci_transport.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/l2cap.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include/write_task.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/vendor/vendor_specific_commands.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/vendor/vendor_specific_init.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/vendor/vendor_specific_init.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/att/att.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/avctp/avctp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/avdtp/avdtp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/bnep/bnep.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/dbase/database.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/hci_1.2/hci_h.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/mcap/mcap.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/obex/obex.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/rfcomm/rfcomm.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/sdp/sdp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/sm/sm.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/sm/sm_extern.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/sm/sm_internal.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/smp/smp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/smp/smp_extern.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/smp/smp_fsm.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/smp/smp_fsm_engine.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/smp/smp_internal.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/aes_cmac/aes_cmac.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/at_parser/at_parser_hsp_hfp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/object_parser/object_parser_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/object_parser/tokenizer.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/racp/racp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/storage/storage.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/xml_parser/xml_common_defines.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/xml_parser/xml_encoder.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/xml_parser/xml_parser.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_assert.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_config.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_config.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_debug.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_debug.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_debug_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_debug_internal.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_fops.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_fops.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_os.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_os.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_serial.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_serial.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_timer.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_timer.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos/EM_timer_internal.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_assert.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_config.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_debug.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_debug_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_fops.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_os.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_status_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_storage_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_storage_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/BT_timer.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/btsnoop_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/btsnoop_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/sco_audio_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/sco_audio_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/ctn_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/ctn_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/ftp_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/ftp_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/hci_uart.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/hci_uart.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/hci_uart_internal.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/ht_read_task_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/map_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/map_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/obex_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/obex_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/pbap_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/pbap_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/write_task_extern_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/write_task_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/write_task_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/littlefs_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/littlefs_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/controller.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/controller.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/controller/controller_wifi_nxp.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/controller/controller_wifi_nxp.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_assert.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_config.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_config.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_debug.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_debug.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_debug_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_debug_internal.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_fops.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_fops.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_os.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_os.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_serial.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_serial.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_timer.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_timer.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal/ethal_timer_internal.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/sbc/sbc_os.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/EM_platform.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/EM_platform.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/sbc/sbc_api.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/config/BT_features.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/config/BT_limits.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/config/db_gen.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/aes_cmac_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/aes_cmac_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/BT_common_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/BT_common_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/device_queue_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/device_queue_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/sm_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/sm_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/sm_ssp_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/sm_ssp_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/smp_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/smp_pl.h"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/gatt_db_pl.c"
"${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension/gatt_db_pl.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_a2dp.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_a2dp_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/a2dp_codec/sbc/a2dp_codec_sbc.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_avrcp.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_avrcp_al_api.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_avrcp_al_internal.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_avrcp_al_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_avrcp_al_api.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_avrcp_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_att.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_at.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_att_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_avdtp_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_conn.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_conn_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_crypto.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_crypto_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_gatt.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_gatt_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_hci_core.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_hci_core.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_adv.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_adv.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_br.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_br.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_id.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_id.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_scan.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_scan.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_ecc.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_ecc.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_addr.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_buf.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_direction.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_direction_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_hci_ecc.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_keys.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_keys.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_keys_br.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_l2cap.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_l2cap_br.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_l2cap_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_monitor.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_monitor.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_rfcomm.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_rfcomm_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_spp.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_rpa.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_rpa.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_settings.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_settings.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_sdp.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_sdp_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_smp.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_smp.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_ssp.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_ssp.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_uuid.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_hfp_ag.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_hfp_hf.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/host/bt_pal_hfp_internal.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/a2dp.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/avrcp.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/a2dp_codec_sbc.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/addr.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/att.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/avdtp.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/bluetooth.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/direction.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/buf.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/l2cap.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/rfcomm.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/spp.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/sdp.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/conn.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/crypto.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/gap.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/gatt.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/hci.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/hci_err.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/hci_raw.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/hci_vs.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/hfp_hf.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/hfp_ag.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/iso.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/testing.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/uuid.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/sys/util.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/sys/printk.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/sys/byteorder.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/zephyr/types.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting/porting.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting/porting.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting/errno/errno.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting/work_queue.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/sys/work_queue.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/toolchain/common.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/toolchain/gcc.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/toolchain/iar.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/toolchain/armcc.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/toolchain.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting/buf.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/net/buf.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting/slist.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/sys/slist.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting/atomic_c.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/sys/atomic.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/services/bas.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/services/bas.h"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/services/hrs.c"
"${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include/bluetooth/services/hrs.h"
)

target_include_directories(${MCUX_SDK_PROJECT_NAME} PRIVATE
    ${ProjDirPath}/..
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/controller/configs
    ${ProjDirPath}/../../../..
    ${ProjDirPath}/../..
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/examples/audio_profile
    ${ProjDirPath}/../config_files
    ${ProjDirPath}/../../../../../../middleware/wifi/incl/wifidriver
    ${ProjDirPath}/../../../../../../middleware/wifi/wifidriver/incl
    ${ProjDirPath}/../../../../../../middleware/wifi/wifidriver
    ${ProjDirPath}/../../../../../../middleware/wifi/incl/wlcmgr
    ${ProjDirPath}/../../../../../../middleware/wifi/incl/port/os
    ${ProjDirPath}/../../../../../../middleware/wifi/incl
    ${ProjDirPath}/../../../../../../middleware/wifi/wifi_bt_firmware
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/controller
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind/platform
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/impl/ethermind
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/eOSAL
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/include
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/vendor
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/att
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/avctp
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/avdtp
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/bnep
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/common
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/dbase
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/hci_1.2
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/mcap
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/obex
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/rfcomm
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/sdp
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/sm
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/smp
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/protocols/write_task
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/aes_cmac
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/at_parser
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/btsnoop
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/object_parser
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/racp
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/security
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/status
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/storage
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/xml_parser
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/bluetooth/controller
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/ethal
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux/sbc
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/osal/src/freertos
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/port/pal/mcux
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/utils/sbc
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/config
    ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/export/extension
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/include
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/bluetooth
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/porting
    ${ProjDirPath}/../../../../../../middleware/edgefast_bluetooth/source/services
)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
     target_compile_definitions(${MCUX_SDK_PROJECT_NAME}  PRIVATE MBEDTLS_CONFIG_FILE="aws_mbedtls_config.h")
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
     target_compile_definitions(${MCUX_SDK_PROJECT_NAME}  PRIVATE MBEDTLS_CONFIG_FILE="aws_mbedtls_config.h")
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

set(CMAKE_MODULE_PATH
    ${ProjDirPath}/../../../../../../devices/MIMXRT1176/drivers
    ${ProjDirPath}/../../../../../../devices/MIMXRT1176
    ${ProjDirPath}/../../../../../../components/uart
    ${ProjDirPath}/../../../../../../devices/MIMXRT1176/utilities
    ${ProjDirPath}/../../../../../../devices/MIMXRT1176/xip
    ${ProjDirPath}/../../../../xip
    ${ProjDirPath}/../../../../../../components/serial_manager
    ${ProjDirPath}/../../../../../../components/lists
    ${ProjDirPath}/../../../../../../middleware/sdmmc
    ${ProjDirPath}/../../../../../../rtos/freertos
    ${ProjDirPath}/../../../../../../devices/MIMXRT1176/drivers/cm7
    ${ProjDirPath}/../../../../../../middleware/maestro
    ${ProjDirPath}/../../../../../../middleware/usb
    ${ProjDirPath}/../../../../../../components/osa
    ${ProjDirPath}/../../../../../../middleware/fatfs
    ${ProjDirPath}/../../../../../../middleware/wireless/framework
    ${ProjDirPath}/../../../../../../components/mem_manager
    ${ProjDirPath}/../../../../../../components/messaging
    ${ProjDirPath}/../../../../../../components/rng
    ${ProjDirPath}/../../../../../../components/flash/mflash
    ${ProjDirPath}/../../../../../../components/flash/mflash/mimxrt1170
    ${ProjDirPath}/../../../../../../middleware/mbedtls
    ${ProjDirPath}/../../../../../../rtos/freertos/freertos_kernel
    ${ProjDirPath}/../../../../../../middleware/lwip
    ${ProjDirPath}/../../../../../../middleware/wifi
    ${ProjDirPath}/../../../../../../components/wifi_bt_module
    ${ProjDirPath}/../../../../../../components/internal_flash
    ${ProjDirPath}/../../../../../../middleware/wireless
    ${ProjDirPath}/../../../../../../middleware/littlefs
    ${ProjDirPath}/../../../../../../CMSIS/Core/Include
    ${ProjDirPath}/../../../../../../components/log
)

# include modules
include(driver_clock_MIMXRT1176_cm7)

include(driver_common_MIMXRT1176_cm7)
include(driver_lpi2c_MIMXRT1176_cm7)


include(device_MIMXRT1176_CMSIS_MIMXRT1176_cm7)

include(device_MIMXRT1176_startup_MIMXRT1176_cm7)

include(driver_lpuart_MIMXRT1176_cm7)

include(driver_igpio_MIMXRT1176_cm7)

include(component_lpuart_adapter_MIMXRT1176_cm7)

include(utility_assert_MIMXRT1176_cm7)

include(utility_debug_console_MIMXRT1176_cm7)

include(driver_xip_device_MIMXRT1176_cm7)

include(driver_xip_board_MIMXRT1176_cm7)

include(driver_iomuxc_MIMXRT1176_cm7)

include(component_serial_manager_MIMXRT1176_cm7)

include(component_lists_MIMXRT1176_cm7)

include(component_serial_manager_uart_MIMXRT1176_cm7)

include(middleware_sdmmc_sdio_MIMXRT1176_cm7)

include(middleware_sdmmc_common_MIMXRT1176_cm7)

include(middleware_sdmmc_host_usdhc_MIMXRT1176_cm7)

include(middleware_sdmmc_host_usdhc_freertos_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_abstractions_wifi_MIMXRT1176_cm7)

include(driver_dmamux_MIMXRT1176_cm7)

include(driver_edma_MIMXRT1176_cm7)

include(driver_cache_armv7_m7_MIMXRT1176_cm7)

include(driver_flexspi_MIMXRT1176_cm7)

include(middleware_sdmmc_sd_MIMXRT1176_cm7)

include(middleware_maestro_framework_MIMXRT1176_cm7)

include(middleware_usb_host_stack_MIMXRT1176_cm7)

include(component_osa_MIMXRT1176_cm7)

include(middleware_usb_host_ehci_MIMXRT1176_cm7)

include(middleware_usb_phy_MIMXRT1176_cm7)

include(middleware_fatfs_MIMXRT1176_cm7)

include(middleware_fatfs_usb_MIMXRT1176_cm7)

include(middleware_wireless_framework_sec_lib_MIMXRT1176_cm7)

include(component_mem_manager_MIMXRT1176_cm7)

include(component_messaging_MIMXRT1176_cm7)

include(component_software_rng_adapter_MIMXRT1176_cm7)

include(component_mflash_file_MIMXRT1176_cm7)

include(component_mflash_rt1170_MIMXRT1176_cm7)

include(component_mflash_common_MIMXRT1176_cm7)

include(middleware_mbedtls_MIMXRT1176_cm7)

include(middleware_mbedtls_port_ksdk_MIMXRT1176_cm7)

include(middleware_mbedtls_rt2_MIMXRT1176_cm7)

include(middleware_freertos-kernel_heap_4_MIMXRT1176_cm7)

include(utility_shell_MIMXRT1176_cm7)

include(middleware_freertos-kernel_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_vendor_nxp_wifi_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_vendor_nxp_secure_sockets_lwip_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_demos_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_demos_dev_mode_key_provisioning_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_abstractions_platform_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_abstractions_secure_sockets_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_freertos_plus_standard_crypto_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_freertos_plus_standard_utils_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_freertos_plus_standard_tls_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_abstractions_pkcs11_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_abstractions_pkcs11_mbedtls_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_3rdparty_pkcs11_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_vendor_nxp_pkcs11_MIMXRT1176_cm7)

include(middleware_lwip_MIMXRT1176_cm7)

include(middleware_wifi_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_logging_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_device_shadow_for_aws_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_corejason_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_mqtt_demo_helpers_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_abstractions_transport_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_coremqtt_MIMXRT1176_cm7)

include(component_wifi_bt_module_tx_pwr_limits_MIMXRT1176_cm7)

include(driver_lpuart_edma_MIMXRT1176_cm7)

include(driver_pmu_1_MIMXRT1176_cm7)

include(driver_dcdc_soc_MIMXRT1176_cm7)

include(component_flexspi_nor_flash_adapter_MIMXRT1176_cm7)

include(component_flexspi_nor_flash_adapter_rt1060evk_MIMXRT1176_cm7)

include(middleware_wireless_framework_function_lib_MIMXRT1176_cm7)

include(middleware_wireless_framework_Common_MIMXRT1176_cm7)

include(middleware_littlefs_MIMXRT1176_cm7)

include(utilities_misc_utilities_MIMXRT1176_cm7)

include(driver_anatop_ai_MIMXRT1176_cm7)

include(CMSIS_Include_core_cm_MIMXRT1176_cm7)

include(device_MIMXRT1176_system_MIMXRT1176_cm7)

include(middleware_sdmmc_osa_freertos_MIMXRT1176_cm7)

include(component_osa_free_rtos_MIMXRT1176_cm7)

include(middleware_freertos-kernel_extension_MIMXRT1176_cm7)

include(driver_usdhc_MIMXRT1176_cm7)

include(driver_memory_MIMXRT1176_cm7)

include(middleware_maestro_framework_doc_MIMXRT1176_cm7)

include(middleware_usb_common_header_MIMXRT1176_cm7)

include(middleware_usb_host_common_header_MIMXRT1176_cm7)

include(middleware_usb_host_msd_MIMXRT1176_cm7)

include(driver_caam_MIMXRT1176_cm7)

include(middleware_wifi_wifidriver_MIMXRT1176_cm7)

include(middleware_wifi_fwdnld_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_c_sdk_standard_common_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_3rdparty_mbedtls_utils_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_3rdparty_mbedtls_config_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_network_manager_MIMXRT1176_cm7)

include(component_log_backend_debugconsole_MIMXRT1176_cm7)

include(component_log_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_libraries_abstractions_backoff_algorithm_MIMXRT1176_cm7)

include(middleware_freertos-aws_iot_pkcs11_helpers_MIMXRT1176_cm7)


TARGET_LINK_LIBRARIES(${MCUX_SDK_PROJECT_NAME} PRIVATE -Wl,--start-group)

target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE m)

target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE c)

target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE gcc)

target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE nosys)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmaestro_streamer.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmaestro_cci.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmaestro_utils.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmp3.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libopus.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libogg.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libsrc48.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libwav.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/framework/SecLib/lib_crypto_m7.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_a2dp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_avrcp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_bip.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_bpp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_core.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_ctn.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_ftp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_gatt.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_hfp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_hid.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_map.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_opp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_pan.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_pbap.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_protocol.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_sap.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_spp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_util.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_sbc_common.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_sbc_decoder.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_sbc_encoder.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_debug)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmaestro_streamer.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmaestro_cci.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmaestro_utils.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libmp3.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libopus.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libogg.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libsrc48.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/maestro/libs/cm7f/armgcc/release/libwav.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/framework/SecLib/lib_crypto_m7.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_a2dp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_avrcp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_bip.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_bpp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_core.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_ctn.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_ftp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_gatt.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_hfp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_hid.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_map.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_opp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_pan.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_pbap.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_protocol.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_sap.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_spp.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_bt_util.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_sbc_common.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_sbc_decoder.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

if(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)
    target_link_libraries(${MCUX_SDK_PROJECT_NAME} PRIVATE ${ProjDirPath}/../../../../../../middleware/wireless/ethermind/bluetooth/private/lib/mcux/default/btdm/cm7f/gcc/libethermind_sbc_encoder.a)
endif(CMAKE_BUILD_TYPE STREQUAL flexspi_nor_release)

TARGET_LINK_LIBRARIES(${MCUX_SDK_PROJECT_NAME} PRIVATE -Wl,--end-group)


