test, examples: use new component registration function

This commit is contained in:
Renz Bagaporo
2020-03-22 17:34:18 +08:00
parent bd827a4d2f
commit 4d9c573fb6
33 changed files with 124 additions and 197 deletions

View File

@@ -1,5 +1,3 @@
set(COMPONENT_SRCDIRS ".") idf_component_register(SRC_DIRS "."
set(COMPONENT_PRIV_INCLUDEDIRS "../private_include" ".") INCLUDE_DIRS "../private_include" "."
set(COMPONENT_PRIV_REQUIRES unity test_utils esp_netif nvs_flash) PRIV_REQUIRES unity test_utils esp_netif nvs_flash)
register_component()

View File

@@ -1,7 +1,3 @@
set(COMPONENT_SRCDIRS idf_component_register(SRC_DIRS "."
"." INCLUDE_DIRS "."
) PRIV_REQUIRES unity xtensa perfmon)
set(COMPONENT_ADD_INCLUDEDIRS ".")
set(COMPONENT_REQUIRES unity xtensa perfmon)
register_component()

View File

@@ -1,5 +1,3 @@
set(COMPONENT_SRCDIRS ".") idf_component_register(SRC_DIRS "."
set(COMPONENT_PRIV_INCLUDEDIRS "../private_include" ".") INCLUDE_DIRS "../private_include" "."
set(COMPONENT_PRIV_REQUIRES unity test_utils tcp_transport) PRIV_REQUIRES unity test_utils tcp_transport)
register_component()

View File

@@ -1,5 +1,2 @@
set(COMPONENT_SRCS "ble_ancs_demo.c" idf_component_register(SRCS "ble_ancs_demo.c" "ble_ancs.c"
"ble_ancs.c") INCLUDE_DIRS ".")
set(COMPONENT_ADD_INCLUDEDIRS ".")
register_component()

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "gattc_gatts_coex.c") idf_component_register(SRCS "gattc_gatts_coex.c"
set(COMPONENT_ADD_INCLUDEDIRS ".") INCLUDE_DIRS ".")
register_component()

View File

@@ -1,12 +1,11 @@
set(COMPONENT_SRCS "ble_unit.c" set(srcs "ble_unit.c"
"run_tc.c" "run_tc.c"
"sync.c" "sync.c"
"test_env.c" "test_env.c"
"wifi_connect.c" "wifi_connect.c"
"wifi_unit.c") "wifi_unit.c")
set(COMPONENT_ADD_INCLUDEDIRS .) idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS "."
set(COMPONENT_REQUIRES console nvs_flash bt) REQUIRES console nvs_flash bt
set(SUPPORTED_TARGETS esp32) REQUIRED_IDF_TARGETS esp32)
register_component()

View File

@@ -1,6 +1,3 @@
set(COMPONENT_SRCS "main.c" idf_component_register(SRCS "main.c" "coex_cmd.c"
"coex_cmd.c") INCLUDE_DIRS "."
REQUIRED_IDF_TARGETS esp32)
set(COMPONENT_ADD_INCLUDEDIRS ".")
set(SUPPORTED_TARGETS esp32)
register_component()

View File

@@ -1,4 +1,4 @@
set(COMPONENT_SRCS "ble_mesh_adapter.c" set(srcs "ble_mesh_adapter.c"
"ble_mesh_cfg_srv_model.c" "ble_mesh_cfg_srv_model.c"
"ble_mesh_console_lib.c" "ble_mesh_console_lib.c"
"ble_mesh_console_main.c" "ble_mesh_console_main.c"
@@ -8,6 +8,5 @@ set(COMPONENT_SRCS "ble_mesh_adapter.c"
"ble_mesh_reg_gen_onoff_client_cmd.c" "ble_mesh_reg_gen_onoff_client_cmd.c"
"register_bluetooth.c") "register_bluetooth.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,4 +1,4 @@
set(COMPONENT_SRCS "ble_mesh_adapter.c" set(srcs "ble_mesh_adapter.c"
"transaction.c" "transaction.c"
"ble_mesh_cfg_srv_model.c" "ble_mesh_cfg_srv_model.c"
"ble_mesh_console_lib.c" "ble_mesh_console_lib.c"
@@ -11,6 +11,5 @@ set(COMPONENT_SRCS "ble_mesh_adapter.c"
"ble_mesh_register_provisioner_cmd.c" "ble_mesh_register_provisioner_cmd.c"
"register_bluetooth.c") "register_bluetooth.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,6 +1,3 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" idf_component_register(SRCS "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c") "ble_mesh_demo_init.c"
INCLUDE_DIRS ".")
set(COMPONENT_ADD_INCLUDEDIRS ".")
register_component()

View File

@@ -1,7 +1,6 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" set(srcs "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c" "ble_mesh_demo_init.c"
"board.c") "board.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,7 +1,2 @@
idf_component_register(SRCS "button.c" "button_obj.cpp"
set(COMPONENT_SRCS "button.c" INCLUDE_DIRS "." "include")
"button_obj.cpp")
set(COMPONENT_ADD_INCLUDEDIRS ". include")
register_component()

View File

@@ -1,7 +1,6 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" set(srcs "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c" "ble_mesh_demo_init.c"
"board.c") "board.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,7 +1,6 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" set(srcs "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c" "ble_mesh_demo_init.c"
"board.c") "board.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,6 +1,5 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" set(srcs "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c") "ble_mesh_demo_init.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,7 +1,3 @@
set(COMPONENT_SRCS "button.c" idf_component_register(SRCS "button.c" "button_obj.cpp"
"button_obj.cpp") INCLUDE_DIRS "." "include")
set(COMPONENT_ADD_INCLUDEDIRS ". include")
register_component()

View File

@@ -1,7 +1,6 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" set(srcs "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c" "ble_mesh_demo_init.c"
"board.c") "board.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,7 +1,6 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" set(srcs "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c" "ble_mesh_demo_init.c"
"board.c") "board.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,8 +1,3 @@
set(COMPONENT_SRCS "cmd_wifi.c" idf_component_register(SRCS "cmd_wifi.c" "iperf.c"
"iperf.c") INCLUDE_DIRS "."
REQUIRES lwip console)
set(COMPONENT_ADD_INCLUDEDIRS .)
set(COMPONENT_REQUIRES lwip console)
register_component()

View File

@@ -1,7 +1,6 @@
set(COMPONENT_SRCS "ble_mesh_demo_main.c" set(srcs "ble_mesh_demo_main.c"
"ble_mesh_demo_init.c" "ble_mesh_demo_init.c"
"board.c") "board.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")
register_component()

View File

@@ -1,9 +1,7 @@
set(COMPONENT_SRCS "esp_fast_prov_client_model.c" set(srcs "esp_fast_prov_client_model.c"
"esp_fast_prov_server_model.c" "esp_fast_prov_server_model.c"
"esp_fast_prov_operation.c") "esp_fast_prov_operation.c")
set(COMPONENT_ADD_INCLUDEDIRS ".") idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS "."
set(COMPONENT_REQUIRES bt) REQUIRES bt)
register_component()

View File

@@ -1,3 +1 @@
set(COMPONENT_SRCS "main.c") idf_component_register(SRCS "main.c")
register_component()

View File

@@ -1,6 +1,2 @@
set(COMPONENT_SRCS "main.c" idf_component_register(SRCS "main.c" "misc.c" "peer.c"
"misc.c" INCLUDE_DIRS ".")
"peer.c")
set(COMPONENT_ADD_INCLUDEDIRS ".")
register_component()

View File

@@ -1,5 +1,2 @@
set(COMPONENT_SRCS "main.c" idf_component_register(SRCS "main.c" "gatt_svr.c"
"gatt_svr.c") INCLUDE_DIRS ".")
set(COMPONENT_ADD_INCLUDEDIRS ".")
register_component()

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "app_mesh.c") idf_component_register(SRCS "app_mesh.c"
set(COMPONENT_ADD_INCLUDEDIRS ".") INCLUDE_DIRS ".")
register_component()

View File

@@ -1,7 +1,7 @@
set(COMPONENT_SRCS "main.c" set(srcs "main.c"
"gatt_svr.c" "gatt_svr.c"
"misc.c" "misc.c"
"scli.c") "scli.c")
set(COMPONENT_ADD_INCLUDEDIRS ".")
register_component() idf_component_register(SRCS "${srcs}"
INCLUDE_DIRS ".")

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "temp_sensor_main.c") idf_component_register(SRCS "temp_sensor_main.c"
set(COMPONENT_ADD_INCLUDEDIRS ".") INCLUDE_DIRS ".")
register_component()

View File

@@ -1,8 +1,3 @@
set(COMPONENT_SRCS "app_main.c" "esp_local_ctrl_service.c") idf_component_register(SRCS "app_main.c" "esp_local_ctrl_service.c"
set(COMPONENT_ADD_INCLUDEDIRS ".") INCLUDE_DIRS "."
EMBED_TXTFILES "certs/cacert.pem" "certs/prvtkey.pem")
set(COMPONENT_EMBED_TXTFILES
"certs/cacert.pem"
"certs/prvtkey.pem")
register_component()

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "https_x509_bundle_example_main.c") idf_component_register(SRCS "https_x509_bundle_example_main.c"
set(COMPONENT_ADD_INCLUDEDIRS ".") INCLUDE_DIRS ".")
register_component()

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "app_main.c") idf_component_register(SRCS "app_main.c"
set(COMPONENT_ADD_INCLUDEDIRS ".") INCLUDE_DIRS ".")
register_component()

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "flash_encrypt_main.c") idf_component_register(SRCS "flash_encrypt_main.c"
set(COMPONENT_ADD_INCLUDEDIRS "") INCLUDE_DIRS ".")
register_component()

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "perfmon_example_main.c") idf_component_register(SRCS "perfmon_example_main.c"
set(COMPONENT_ADD_INCLUDEDIRS ".") INCLUDE_DIRS ".")
register_component()

View File

@@ -1,4 +1,2 @@
set(COMPONENT_SRCS "secure_boot_main.c") idf_component_register(SRCS "secure_boot_main.c"
set(COMPONENT_ADD_INCLUDEDIRS "") INCLUDE_DIRS ".")
register_component()