diff options
author | bunnei <bunneidev@gmail.com> | 2020-07-10 15:18:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 15:18:04 -0400 |
commit | 995067538ddbee8761b8ddd6bf41b6f84c6ae524 (patch) | |
tree | fbb70d1fab044444c7153d244e256525468bd2ea /src | |
parent | 01a1adfb0ca02cc7d226d6de47c42b7fd3eb3778 (diff) | |
parent | b1b1ed7597cbe329e26db8240b9e05d3fc360b6f (diff) |
Merge pull request #4221 from jbeich/unused-qt-opengl
cmake: drop dependency on QtOpenGL
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 742b72856..6b25a7fa0 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -152,7 +152,7 @@ endif() create_target_directory_groups(yuzu) target_link_libraries(yuzu PRIVATE common core input_common video_core) -target_link_libraries(yuzu PRIVATE Boost::boost glad Qt5::OpenGL Qt5::Widgets) +target_link_libraries(yuzu PRIVATE Boost::boost glad Qt5::Widgets) target_link_libraries(yuzu PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) if (ENABLE_VULKAN AND NOT WIN32) |