mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
idf_build_get_property(target IDF_TARGET)
 | 
						|
 | 
						|
if(${target} STREQUAL "linux")
 | 
						|
    return() # This component is not supported by the POSIX/Linux simulator
 | 
						|
endif()
 | 
						|
 | 
						|
set(include_dirs include/common
 | 
						|
                 include/security
 | 
						|
                 include/transports
 | 
						|
                 include/crypto/srp6a
 | 
						|
                 proto-c)
 | 
						|
set(priv_include_dirs src/common)
 | 
						|
set(srcs
 | 
						|
    "src/common/protocomm.c"
 | 
						|
    "proto-c/constants.pb-c.c"
 | 
						|
    "proto-c/sec0.pb-c.c"
 | 
						|
    "proto-c/sec1.pb-c.c"
 | 
						|
    "proto-c/sec2.pb-c.c"
 | 
						|
    "proto-c/session.pb-c.c"
 | 
						|
    "src/transports/protocomm_console.c"
 | 
						|
    "src/transports/protocomm_httpd.c")
 | 
						|
 | 
						|
if(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0)
 | 
						|
    list(APPEND srcs
 | 
						|
        "src/security/security0.c")
 | 
						|
endif()
 | 
						|
 | 
						|
if(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1)
 | 
						|
    list(APPEND srcs
 | 
						|
        "src/security/security1.c")
 | 
						|
endif()
 | 
						|
 | 
						|
if(CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2)
 | 
						|
    list(APPEND srcs
 | 
						|
        "src/security/security2.c"
 | 
						|
        "src/crypto/srp6a/esp_srp.c"
 | 
						|
        "src/crypto/srp6a/esp_srp_mpi.c")
 | 
						|
endif()
 | 
						|
 | 
						|
if(CONFIG_BT_ENABLED)
 | 
						|
    if(CONFIG_BT_BLUEDROID_ENABLED)
 | 
						|
        list(APPEND srcs
 | 
						|
            "src/simple_ble/simple_ble.c"
 | 
						|
            "src/transports/protocomm_ble.c")
 | 
						|
        list(APPEND priv_include_dirs
 | 
						|
            src/simple_ble)
 | 
						|
    endif()
 | 
						|
    if(CONFIG_BT_NIMBLE_ENABLED)
 | 
						|
        list(APPEND srcs
 | 
						|
            "src/transports/protocomm_nimble.c")
 | 
						|
    endif()
 | 
						|
endif()
 | 
						|
 | 
						|
idf_component_register(SRCS "${srcs}"
 | 
						|
                    INCLUDE_DIRS "${include_dirs}"
 | 
						|
                    PRIV_INCLUDE_DIRS "${priv_include_dirs}"
 | 
						|
                    PRIV_REQUIRES protobuf-c mbedtls console esp_http_server esp_driver_uart
 | 
						|
                    REQUIRES bt)
 |