2023-08-28 14:02:08 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
|
|
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
|
return() # This component is not supported by the POSIX/Linux simulator
|
|
|
|
|
endif()
|
|
|
|
|
|
2020-07-21 17:15:19 +08:00
|
|
|
idf_component_register(SRCS "pm_locks.c" "pm_trace.c" "pm_impl.c"
|
2020-12-23 14:45:36 +08:00
|
|
|
INCLUDE_DIRS include
|
2023-11-11 15:23:41 +08:00
|
|
|
PRIV_REQUIRES esp_system esp_driver_gpio esp_timer
|
2020-12-23 14:45:36 +08:00
|
|
|
LDFRAGMENTS linker.lf)
|