]> sigrok.org Git - pulseview.git/blobdiff - main.cpp
Fix #971: Allow saving/restoring of session setups
[pulseview.git] / main.cpp
index a77969ea7f72313e6c42b71cf0cd09980c53e0da..28c0a41f6da1e6800413e20b67f79ea9f3c617ca 100644 (file)
--- a/main.cpp
+++ b/main.cpp
 #include <getopt.h>
 #include <vector>
 
+#ifdef ENABLE_FLOW
+#include <gstreamermm.h>
+#include <libsigrokflow/libsigrokflow.hpp>
+#endif
+
 #include <libsigrokcxx/libsigrokcxx.hpp>
 
 #include <QCheckBox>
@@ -169,6 +174,14 @@ int main(int argc, char *argv[])
        bool do_scan = true;
        bool show_version = false;
 
+#ifdef ENABLE_FLOW
+       // Initialise gstreamermm. Must be called before any other GLib stuff.
+       Gst::init();
+
+       // Initialize libsigrokflow. Must be called after Gst::init().
+       Srf::init();
+#endif
+
        Application a(argc, argv);
 
 #ifdef ANDROID