mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	List of changes: * New component esp_local_ctrl added * Example added under examples/protocols/esp_local_ctrl * Documentation added under protocols/esp_local_ctrl * Demo client side app esp_local_ctrl.py added under examples/protocols/esp_local_ctrl/scripts * protocomm_ble : protocomm_ble_config_t given struct name for allowing forward declaration * esp_prov/transport_softap renamed to transport_http * transport_http module supports verification of server certificate * transport_http module performs name resolution before connection
		
			
				
	
	
		
			24 lines
		
	
	
		
			726 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			726 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set(include_dirs include)
 | 
						|
set(priv_include_dirs proto-c src ../protocomm/proto-c)
 | 
						|
set(srcs  "src/esp_local_ctrl.c"
 | 
						|
          "src/esp_local_ctrl_handler.c"
 | 
						|
          "proto-c/esp_local_ctrl.pb-c.c")
 | 
						|
 | 
						|
if(CONFIG_ESP_HTTPS_SERVER_ENABLE)
 | 
						|
    list(APPEND srcs
 | 
						|
         "src/esp_local_ctrl_transport_httpd.c")
 | 
						|
endif()
 | 
						|
 | 
						|
if(CONFIG_BT_ENABLED)
 | 
						|
    if(CONFIG_BT_BLUEDROID_ENABLED)
 | 
						|
        list(APPEND srcs
 | 
						|
             "src/esp_local_ctrl_transport_ble.c")
 | 
						|
    endif()
 | 
						|
endif()
 | 
						|
 | 
						|
idf_component_register(SRCS "${srcs}"
 | 
						|
                    INCLUDE_DIRS "${include_dirs}"
 | 
						|
                    PRIV_INCLUDE_DIRS "${priv_include_dirs}"
 | 
						|
                    REQUIRES protocomm esp_https_server
 | 
						|
                    PRIV_REQUIRES protobuf-c mdns)
 |