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

11 lines
401 B
CMake
Raw Normal View History

2019-08-06 09:59:26 +00:00
if(IDF_TARGET STREQUAL "esp32")
idf_component_register(SRC_DIRS esp32
PRIV_INCLUDE_DIRS .
PRIV_REQUIRES unity ulp soc esp_common)
2018-08-27 02:48:16 +00:00
2019-08-06 09:59:26 +00:00
set(ulp_app_name ulp_test_app)
set(ulp_s_sources "ulp/test_jumps_esp32.S")
set(ulp_exp_dep_srcs "esp32/test_ulp_as.c")
ulp_embed_binary(${ulp_app_name} "${ulp_s_sources}" "${ulp_exp_dep_srcs}")
2019-08-06 09:59:26 +00:00
endif()