Skip to content
Snippets Groups Projects
Unverified Commit 4d08f56f authored by Daniel Agar's avatar Daniel Agar Committed by GitHub
Browse files

cmake add missing generate_px4muorb_stubs dependency (#8559)

parent 92540fc6
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,6 @@ px4_add_module(
px4muorb.cpp
uORBFastRpcChannel.cpp
DEPENDS
generate_px4muorb_stubs
platforms__common
)
# vim: set noet ft=cmake fenc=utf-8 ff=unix :
......@@ -31,6 +31,7 @@
#
############################################################################
set(EXTRA_DEPENDS)
if("${CONFIG_SHMEM}" STREQUAL "1")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PX4_SOURCE_DIR}/cmake/cmake_hexagon")
include(hexagon_sdk)
......@@ -42,6 +43,7 @@ if("${CONFIG_SHMEM}" STREQUAL "1")
)
# TODO: This didn't seem to be tracked correctly from posix_eagle_release.cmake
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DCONFIG_SHMEM")
set(EXTRA_DEPENDS generate_px4muorb_stubs)
endif()
px4_add_module(
......@@ -57,5 +59,5 @@ px4_add_module(
${SHMEM_SRCS}
DEPENDS
platforms__common
${EXTRA_DEPENDS}
)
# vim: set noet ft=cmake fenc=utf-8 ff=unix :
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment