mirror of
https://github.com/NickHu/sway
synced 2024-11-16 19:49:56 +01:00
cmake: clean up installation rules
This commit is contained in:
parent
f8ae8cb820
commit
98678dea5d
2 changed files with 20 additions and 20 deletions
|
@ -60,15 +60,14 @@ target_link_libraries(sway
|
|||
${JSONC_LIBRARIES}
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
TARGETS sway
|
||||
RUNTIME DESTINATION bin
|
||||
)
|
||||
|
||||
INSTALL(
|
||||
FILES ${PROJECT_SOURCE_DIR}/config
|
||||
DESTINATION /etc/sway/
|
||||
)
|
||||
install(
|
||||
TARGETS sway
|
||||
RUNTIME DESTINATION bin
|
||||
COMPONENT runtime)
|
||||
install(
|
||||
FILES "${CMAKE_CURRENT_SOURCE_DIR}/config"
|
||||
DESTINATION /etc/sway/
|
||||
COMPONENT configuration)
|
||||
|
||||
add_custom_target(man ALL)
|
||||
|
||||
|
@ -99,10 +98,11 @@ endfunction ()
|
|||
add_manpage(sway 1)
|
||||
add_manpage(sway 5)
|
||||
|
||||
INSTALL(
|
||||
FILES ${PROJECT_SOURCE_DIR}/sway.desktop
|
||||
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/wayland-sessions/)
|
||||
|
||||
INSTALL(
|
||||
FILES ${PROJECT_SOURCE_DIR}/sway-xorg.desktop
|
||||
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/xsessions/)
|
||||
install(
|
||||
FILES "${CMAKE_CURRENT_SOURCE_DIR}/sway.desktop"
|
||||
DESTINATION share/wayland-sessions
|
||||
COMPONENT data)
|
||||
install(
|
||||
FILES "${CMAKE_CURRENT_SOURCE_DIR}/sway-xorg.desktop"
|
||||
DESTINATION share/xsessions
|
||||
COMPONENT data)
|
||||
|
|
|
@ -26,7 +26,7 @@ add_executable(swaybg
|
|||
|
||||
TARGET_LINK_LIBRARIES(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES})
|
||||
|
||||
INSTALL(
|
||||
TARGETS swaybg
|
||||
RUNTIME DESTINATION bin
|
||||
)
|
||||
install(
|
||||
TARGETS swaybg
|
||||
RUNTIME DESTINATION bin
|
||||
COMPONENT runtime)
|
||||
|
|
Loading…
Reference in a new issue