adding in gstreamer working although another window created and meson with it

This commit is contained in:
talksik
2023-07-23 08:04:09 -07:00
parent 9f627fed2f
commit 591b1cf7e0
4 changed files with 48 additions and 7 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
project('flowy', 'cpp')
gtkmm_dep = dependency('gtkmm-4.0', version: '>= 4.6.0')
gstreamer_dep = dependency('gstreamer-1.0')
exe_file = executable('flowy',
'src/main.cpp',
dependencies: gtkmm_dep,
dependencies: [gtkmm_dep, gstreamer_dep],
win_subsystem: 'windows',
)