mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-11-02 15:41:38 +01:00
BREAKING CHANGE: inc headers for AT command definitions are no longer used directly, but pregenerated into *.h(pp)
53 lines
1.6 KiB
CMake
53 lines
1.6 KiB
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
if(${target} STREQUAL "linux")
|
|
set(platform_srcs src/esp_modem_primitives_linux.cpp
|
|
src/esp_modem_uart_linux.cpp
|
|
src/esp_modem_netif_linux.cpp)
|
|
set(dependencies esp_system_protocols_linux)
|
|
else()
|
|
set(platform_srcs src/esp_modem_primitives_freertos.cpp
|
|
src/esp_modem_api_target.cpp
|
|
src/esp_modem_uart.cpp
|
|
src/esp_modem_term_uart.cpp
|
|
src/esp_modem_netif.cpp)
|
|
set(dependencies driver esp_event esp_netif)
|
|
endif()
|
|
|
|
|
|
if(CONFIG_ESP_MODEM_ENABLE_DEVELOPMENT_MODE)
|
|
set(command_dir "generate") # using in-place macro expansion with AT commands
|
|
else()
|
|
set(command_dir "command") # using pre-generated AT commands
|
|
endif()
|
|
|
|
|
|
set(srcs ${platform_srcs}
|
|
"src/esp_modem_dte.cpp"
|
|
"src/esp_modem_dce.cpp"
|
|
"src/esp_modem_api.cpp"
|
|
"src/esp_modem_c_api.cpp"
|
|
"src/esp_modem_factory.cpp"
|
|
"src/esp_modem_cmux.cpp"
|
|
"src/esp_modem_command_library.cpp"
|
|
"src/esp_modem_term_fs.cpp"
|
|
"src/esp_modem_vfs_uart_creator.cpp"
|
|
"src/esp_modem_vfs_socket_creator.cpp"
|
|
"${command_dir}/src/esp_modem_modules.cpp")
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS include ${command_dir}/include
|
|
PRIV_INCLUDE_DIRS private_include
|
|
REQUIRES ${dependencies})
|
|
|
|
|
|
set_target_properties(${COMPONENT_LIB} PROPERTIES
|
|
CXX_STANDARD 17
|
|
CXX_STANDARD_REQUIRED ON
|
|
CXX_EXTENSIONS ON
|
|
)
|
|
|
|
if(CONFIG_ESP_MODEM_ADD_CUSTOM_MODULE)
|
|
idf_component_optional_requires(PUBLIC main)
|
|
endif()
|