diff options
author | erw7 <erw7.github@gmail.com> | 2021-03-07 20:05:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-07 20:05:05 +0900 |
commit | 667e3bfb6e9dcd3287f2082edd83068d5428f3af (patch) | |
tree | bba167ef3a359f0de88ebec2ea05b3f9bf6013d6 /src | |
parent | 0496b572ac8fb0e157f97f02d692aaa9055f6c1e (diff) | |
parent | 5006881b0c5a5d2a88574afa025dc53592998617 (diff) | |
download | rneovim-667e3bfb6e9dcd3287f2082edd83068d5428f3af.tar.gz rneovim-667e3bfb6e9dcd3287f2082edd83068d5428f3af.tar.bz2 rneovim-667e3bfb6e9dcd3287f2082edd83068d5428f3af.zip |
Merge pull request #13004 from jgehrig/jg-neovim-qt-runtime
fix Windows missing QtSVG DLL
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 1a1a178620..2c9d655a15 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -513,8 +513,44 @@ if(WIN32) tidy.exe win32yank.exe winpty-agent.exe + winpty.dll xxd.exe + # Dependencies for neovim-qt + bearer/qgenericbearer.dll + iconengines/qsvgicon.dll + imageformats/qgif.dll + imageformats/qicns.dll + imageformats/qico.dll + imageformats/qjpeg.dll + imageformats/qsvg.dll + imageformats/qtga.dll + imageformats/qtiff.dll + imageformats/qwbmp.dll + imageformats/qwebp.dll + platforms/qwindows.dll + styles/qwindowsvistastyle.dll + translations/qt_ar.qm + translations/qt_bg.qm + translations/qt_ca.qm + translations/qt_cs.qm + translations/qt_da.qm + translations/qt_de.qm + translations/qt_en.qm + translations/qt_es.qm + translations/qt_fi.qm + translations/qt_fr.qm + translations/qt_gd.qm + translations/qt_he.qm + translations/qt_hu.qm + translations/qt_it.qm + translations/qt_ja.qm + translations/qt_ko.qm + translations/qt_lv.qm + translations/qt_pl.qm + translations/qt_ru.qm + translations/qt_sk.qm + translations/qt_uk.qm D3Dcompiler_47.dll libEGL.dll libgcc_s_dw2-1.dll @@ -522,14 +558,13 @@ if(WIN32) libstdc++-6.dll libwinpthread-1.dll nvim-qt.exe + opengl32sw.dll Qt5Core.dll Qt5Gui.dll Qt5Network.dll Qt5Svg.dll Qt5Widgets.dll - winpty.dll - platforms/qwindows.dll ) get_filename_component(DEP_FILE_DIR ${DEP_FILE} DIRECTORY) set(EXTERNAL_BLOBS_SCRIPT "${EXTERNAL_BLOBS_SCRIPT}\n" |