option(ENABLE_SIGNALS "Build with UNIX signals" TRUE)
option(ENABLE_STACKTRACE "Enable stack trace when crashing" FALSE)
option(ENABLE_DECODE "Build with libsigrokdecode" TRUE)
-option(ENABLE_GSTREAMERMM "Build with gstreamermm" TRUE)
+option(ENABLE_FLOW "Build with libsigrokflow" TRUE)
option(ENABLE_TESTS "Enable unit tests" FALSE)
option(STATIC_PKGDEPS_LIBS "Statically link to (pkg-config) libraries" FALSE)
list(APPEND PKGDEPS glib-2.0>=2.28.0)
list(APPEND PKGDEPS glibmm-2.4>=2.28.0)
-if(ENABLE_GSTREAMERMM)
+if(ENABLE_FLOW)
list(APPEND PKGDEPS gstreamermm-1.0>=1.8.0)
list(APPEND PKGDEPS libsigrokflow>=0.1.0)
endif()
add_definitions(-std=c++11)
add_definitions(-DBOOST_MATH_DISABLE_FLOAT128=1)
-if(ENABLE_GSTREAMERMM)
- add_definitions(-DENABLE_GSTREAMERMM)
+if(ENABLE_FLOW)
+ add_definitions(-DENABLE_FLOW)
endif()
if(ENABLE_DECODE)
#include <getopt.h>
#include <vector>
-#ifdef ENABLE_GSTREAMERMM
+#ifdef ENABLE_FLOW
#include <gstreamermm.h>
#include <libsigrokflow/libsigrokflow.hpp>
#endif
bool do_scan = true;
bool show_version = false;
-#ifdef ENABLE_GSTREAMERMM
+#ifdef ENABLE_FLOW
// Initialise gstreamermm. Must be called before any other GLib stuff.
Gst::init();
#endif