From 045d81160abe3e545fc44e3b4246b9ed336a7841 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sat, 29 Dec 2018 18:21:19 +0100 Subject: [PATCH] Add libsigrokflow build system integration. --- CMakeLists.txt | 1 + INSTALL | 1 + main.cpp | 1 + 3 files changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b347092..55b03e5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,6 +78,7 @@ list(APPEND PKGDEPS glibmm-2.4>=2.28.0) if(ENABLE_GSTREAMERMM) list(APPEND PKGDEPS gstreamermm-1.0>=1.8.0) + list(APPEND PKGDEPS libsigrokflow>=0.1.0) endif() set(LIBSR_CXX_BINDING "libsigrokcxx>=0.5.1") diff --git a/INSTALL b/INSTALL index c68d575d..7fb9f730 100644 --- a/INSTALL +++ b/INSTALL @@ -24,6 +24,7 @@ Requirements - libboost-serialization - libboost-test (optional, only needed to run the unit tests) - libboost-stacktrace (optional, only needed for debugging) + - libsigrokflow >= 0.1.0 - libsigrokcxx >= 0.5.1 (libsigrok C++ bindings) - libsigrokdecode >= 0.5.2 - libsigrokandroidutils >= 0.1.0 (optional, only needed on Android) diff --git a/main.cpp b/main.cpp index 857c36a9..a4c7e72b 100644 --- a/main.cpp +++ b/main.cpp @@ -28,6 +28,7 @@ #ifdef ENABLE_GSTREAMERMM #include +#include #endif #include -- 2.30.2