From 745bd8b15dfa631f5213c9bb02e700438069b4d5 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 30 Jul 2023 23:56:10 +0200 Subject: [PATCH 1/1] Build without QtMultimedia. --- main.cpp | 1 - mainwindow.cpp | 1 - mainwindow.h | 1 - meson.build | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/main.cpp b/main.cpp index ade653a..3889023 100644 --- a/main.cpp +++ b/main.cpp @@ -1,4 +1,3 @@ -#include #include #include #include diff --git a/mainwindow.cpp b/mainwindow.cpp index eb82c02..fa29c95 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1,4 +1,3 @@ -#include #include #include #include diff --git a/mainwindow.h b/mainwindow.h index c47e9bf..5298eba 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -1,4 +1,3 @@ -#include #include #include #include diff --git a/meson.build b/meson.build index 51a9e23..af7d23a 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('stats', 'cpp', default_options: ['buildtype=debugoptimized'], version: '0.0.1') qt6 = import('qt6') -qt6deps = dependency('qt6', modules: ['Core', 'Gui', 'Widgets', 'Multimedia', 'OpenGLWidgets', 'OpenGL']) +qt6deps = dependency('qt6', modules: ['Core', 'Gui', 'Widgets', 'OpenGLWidgets', 'OpenGL']) sqlite3dep = dependency('sqlite3') libavcodecdep = dependency('libavcodec') libavformatdep = dependency('libavformat') -- 2.39.2