diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-17 13:50:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 13:50:38 -0500 |
commit | c7452bab90fc0ff5ebc446ee3d39f45bd7a7fbd1 (patch) | |
tree | cd4026c92d44c40945b899252367b0b0e8a2cad6 /src | |
parent | f2b4b668e3d98fe09fa215486060b0549831f86d (diff) | |
parent | 0a8d13801a43ffdc5fc44edbe5185eb6540db942 (diff) |
Merge pull request #42 from N00byKing/3295
Implement Pull #3295 from citra: citra_qt: CMakeLists: Drop leftover handling code for Qt 4 UI files
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/CMakeLists.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index c52d5627a..f5c46f1e9 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -66,11 +66,7 @@ file(GLOB_RECURSE THEMES ${CMAKE_SOURCE_DIR}/dist/qt_themes/*) create_directory_groups(${SRCS} ${HEADERS} ${UIS}) -if (Qt5_FOUND) - qt5_wrap_ui(UI_HDRS ${UIS}) -else() - qt4_wrap_ui(UI_HDRS ${UIS}) -endif() +qt5_wrap_ui(UI_HDRS ${UIS}) if (APPLE) set(MACOSX_ICON "../../dist/yuzu.icns") |