Skip to content

Commit

Permalink
Fix discovery of non-QtWidgets includes when not in toolchain-default…
Browse files Browse the repository at this point in the history
… paths.

Fixes inclusion of QSettings and others in macOS builds with homebrewed deps.
  • Loading branch information
JustinTArthur authored and dubhater committed Oct 14, 2022
1 parent b379384 commit 4085afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Expand Up @@ -10,7 +10,7 @@ deps = [
dependency('libavcodec'),
dependency('libavformat'),
dependency('libavutil'),
dependency('qt5', modules: 'Widgets')
dependency('qt5', modules: ['Core', 'GUI', 'Widgets'])

This comment has been minimized.

Copy link
@pingplug

pingplug Dec 5, 2022

failed to build on Arch Linux, change GUI to Gui will work
is this problem for Arch Linux only?

This comment has been minimized.

Copy link
@dubhater

dubhater Dec 5, 2022

Owner

Probably not just for Arch Linux. But I wonder if Homebrew changes the name from "Gui" to "GUI"? Or the case just doesn't matter there? @JustinTArthur

]

moc_headers = [
Expand Down

0 comments on commit 4085afa

Please sign in to comment.