aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-08-05 11:47:01 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2019-08-05 12:22:59 -0700
commitb9661ce6b9f4eb6845854ebe90e05cc5b446088b (patch)
treefc906e1e7d5f177ac90085cc109ce5ebc8a805de
parent698123549128a1a1741e703f3513abd206b70643 (diff)
cmake: fix compile issue with SDK
To avoid "SkippingbecauseOE_QMAKE_PATH_EXTERNAL_HOST_BINSisnotdefined" error messages when building with the SDK add the respective path to CMakeLists.txt Bug-AGL: SPEC-2711 Change-Id: Ie9599d17e48c8a6e31bbecedb8f1d620b470e663 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
-rw-r--r--app/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt
index e08a102..d77c0c8 100644
--- a/app/CMakeLists.txt
+++ b/app/CMakeLists.txt
@@ -21,6 +21,7 @@ set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
+set(OE_QMAKE_PATH_EXTERNAL_HOST_BINS $ENV{OE_QMAKE_PATH_HOST_BINS})
find_package(Qt5 COMPONENTS WebSockets AGLExtras REQUIRED)