mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 08:11:47 -05:00
require svg
We use an SVG in the input dialog and it disappears if QtSvg isn't available. There's an argument that converting it to PNG is cleaner than requiring an SVG parsing library, but most people will probably have QtSvg?
This commit is contained in:
parent
f4f4fc4746
commit
a5ef5fca7c
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
find_package(Qt6 REQUIRED COMPONENTS Core Widgets Multimedia OpenGLWidgets Network Concurrent)
|
||||
find_package(Qt6 REQUIRED COMPONENTS Core Widgets Multimedia OpenGLWidgets Network Concurrent Svg)
|
||||
find_package(SDL2 REQUIRED)
|
||||
find_package(FFmpeg REQUIRED COMPONENTS avformat avcodec avutil avfilter)
|
||||
|
||||
|
@ -30,6 +30,7 @@ target_link_libraries(vanilla-gui PRIVATE
|
|||
Qt6::Multimedia
|
||||
Qt6::OpenGLWidgets
|
||||
Qt6::Concurrent
|
||||
Qt6::Svg
|
||||
SDL2
|
||||
vanilla
|
||||
FFmpeg::avformat
|
||||
|
|
Loading…
Reference in a new issue