Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmake: remove redundant slashes when installing files #1099

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/gui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,17 +106,17 @@ endif()
install(TARGETS nvim-qt DESTINATION ${CMAKE_INSTALL_BINDIR})
if(NOT APPLE)
install(DIRECTORY runtime
DESTINATION ${CMAKE_INSTALL_DATADIR}/nvim-qt/
DESTINATION ${CMAKE_INSTALL_DATADIR}/nvim-qt
PATTERN "README.md" EXCLUDE)
install(FILES ${PROJECT_SOURCE_DIR}/LICENSE
DESTINATION ${CMAKE_INSTALL_DATADIR}/nvim-qt/)
DESTINATION ${CMAKE_INSTALL_DATADIR}/nvim-qt)
install(FILES nvim-qt.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications)
install(FILES ${PROJECT_SOURCE_DIR}/third-party/neovim.png
RENAME nvim-qt.png
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/192x192/apps/)
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/192x192/apps)
install(FILES ${PROJECT_SOURCE_DIR}/third-party/neovim.svg
RENAME nvim-qt.svg
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps/)
DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps)
endif()

if(WIN32 AND NOT CMAKE_CROSSCOMPILING AND NOT DEFINED USE_STATIC_QT)
Expand Down
Loading