mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
cmake: Make math depend on util
This fixes the build when tracing is enabled.
This commit is contained in:
parent
5e66533751
commit
73d631c775
|
@ -218,7 +218,7 @@ endif()
|
||||||
|
|
||||||
# Math library.
|
# Math library.
|
||||||
add_library(aux_math STATIC ${MATH_SOURCE_FILES})
|
add_library(aux_math STATIC ${MATH_SOURCE_FILES})
|
||||||
target_link_libraries(aux_math PUBLIC aux-includes)
|
target_link_libraries(aux_math PUBLIC aux-includes aux_util)
|
||||||
|
|
||||||
# Math files has extra include(s).
|
# Math files has extra include(s).
|
||||||
target_include_directories(aux_math SYSTEM
|
target_include_directories(aux_math SYSTEM
|
||||||
|
@ -253,6 +253,7 @@ if(ANDROID)
|
||||||
target_link_libraries(aux_util PUBLIC ${ANDROID_LOG_LIBRARY})
|
target_link_libraries(aux_util PUBLIC ${ANDROID_LOG_LIBRARY})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
# GStreamer library.
|
# GStreamer library.
|
||||||
if(XRT_HAVE_GST)
|
if(XRT_HAVE_GST)
|
||||||
add_library(aux_gstreamer STATIC ${GSTREAMER_SOURCE_FILES})
|
add_library(aux_gstreamer STATIC ${GSTREAMER_SOURCE_FILES})
|
||||||
|
|
Loading…
Reference in a new issue