|
|
@@ -1,17 +1,19 @@
|
|
|
-set(COMPONENT_SRCDIRS ".")
|
|
|
-set(COMPONENT_ADD_INCLUDEDIRS ". ${CMAKE_CURRENT_BINARY_DIR}")
|
|
|
+if(IDF_TARGET STREQUAL "esp32s2beta")
|
|
|
+ idf_component_register(SRC_DIRS .
|
|
|
+ INCLUDE_DIRS . ${CMAKE_CURRENT_BINARY_DIR}
|
|
|
+ REQUIRES unity test_utils nvs_flash ulp esp_common
|
|
|
+ )
|
|
|
|
|
|
-set(COMPONENT_REQUIRES unity test_utils nvs_flash ulp esp_common)
|
|
|
+ add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/test_tjpgd_logo.h"
|
|
|
+ COMMAND xxd -i "logo.jpg" "${CMAKE_CURRENT_BINARY_DIR}/test_tjpgd_logo.h"
|
|
|
+ WORKING_DIRECTORY ${COMPONENT_DIR}
|
|
|
+ DEPENDS "${CMAKE_CURRENT_LIST_DIR}/logo.jpg")
|
|
|
|
|
|
-register_component()
|
|
|
+ add_custom_target(esp32s2beta_test_logo DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/test_tjpgd_logo.h")
|
|
|
|
|
|
-add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/test_tjpgd_logo.h"
|
|
|
- COMMAND xxd -i "logo.jpg" "${CMAKE_CURRENT_BINARY_DIR}/test_tjpgd_logo.h"
|
|
|
- WORKING_DIRECTORY ${COMPONENT_DIR}
|
|
|
- DEPENDS "${CMAKE_CURRENT_LIST_DIR}/logo.jpg")
|
|
|
+ add_dependencies(${COMPONENT_LIB} esp32s2beta_test_logo)
|
|
|
|
|
|
-add_custom_target(esp32_test_logo DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/test_tjpgd_logo.h")
|
|
|
+ idf_build_set_property(COMPILE_DEFINITIONS "-DESP_TIMER_DYNAMIC_OVERFLOW_VAL" APPEND)
|
|
|
+ target_link_libraries(${COMPONENT_LIB} INTERFACE "-u ld_include_test_dport_xt_highint5")
|
|
|
+endif()
|
|
|
|
|
|
-add_dependencies(${COMPONENT_LIB} esp32_test_logo)
|
|
|
-
|
|
|
-idf_build_set_property(COMPILE_DEFINITIONS "-DESP_TIMER_DYNAMIC_OVERFLOW_VAL" APPEND)
|