OVMS3-idf/components/esp32/test/CMakeLists.txt

16 lines
605 B
CMake
Raw Normal View History

set(COMPONENT_SRCDIRS ".")
set(COMPONENT_ADD_INCLUDEDIRS ". ${CMAKE_CURRENT_BINARY_DIR}")
2018-08-27 02:48:16 +00:00
set(COMPONENT_REQUIRES unity test_utils nvs_flash ulp esp_common)
2018-08-27 02:48:16 +00:00
register_component()
2018-08-27 02:48:16 +00:00
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_PATH}
DEPENDS "${CMAKE_CURRENT_LIST_DIR}/logo.jpg")
2018-08-27 02:48:16 +00:00
add_custom_target(esp32_test_logo DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/test_tjpgd_logo.h")
2018-08-27 02:48:16 +00:00
add_dependencies(${COMPONENT_TARGET} esp32_test_logo)