cmake: Compatibility fixes from Mahavir

This commit is contained in:
Angus Gratton 2018-06-06 16:14:03 +10:00 committed by Angus Gratton
parent 8c5f1c866b
commit 4667fb2495
3 changed files with 5 additions and 3 deletions

View file

@ -1,6 +1,4 @@
set(COMPONENT_ADD_INCLUDEDIRS port/include nghttp2/lib/includes)
set(COMPONENT_SRCDIRS nghttp2/lib port)
set(COMPONENT_REQUIRES lwip mbedtls)
register_component()

View file

@ -2,3 +2,7 @@ set(COMPONENT_SRCDIRS ".")
set(COMPONENT_ADD_INCLUDEDIRS "include")
set(COMPONENT_REQUIRES)
register_component()
if(CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK)
target_link_libraries(pthread "-Wl,--wrap=vPortCleanUpTCB")
endif()

View file

@ -2,7 +2,7 @@ set(COMPONENT_SRCDIRS src/crypto port src/fast_crypto)
set(COMPONENT_ADD_INCLUDEDIRS include port/include)
set(COMPONENT_REQUIRES "")
set(COMPONENT_PRIV_REQUIRES lwip mbedtls)
set(COMPONENT_PRIV_REQUIRES mbedtls)
register_component()