From 88f71b813aeb826165a459c03159492f92e0d36a Mon Sep 17 00:00:00 2001 From: rhysmorgan134 <36861722+rhysmorgan134@users.noreply.github.com> Date: Sun, 9 Aug 2020 23:47:05 +0100 Subject: [PATCH] exclude omx when performing GST build (#11) --- autoapp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoapp/CMakeLists.txt b/autoapp/CMakeLists.txt index 19385e7..67946c8 100644 --- a/autoapp/CMakeLists.txt +++ b/autoapp/CMakeLists.txt @@ -21,7 +21,7 @@ target_link_libraries(autoapp openauto ) -if(RPI_BUILD) +if(RPI_BUILD AND NOT GST_BUILD) target_link_libraries(autoapp omx) endif()