You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
463 B
18 lines
463 B
7 years ago
|
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
||
|
|
||
|
file(GLOB DESKTOP_FILES_IN *.desktop.in)
|
||
|
|
||
|
# Translations **********************************
|
||
|
lxqt_translate_desktop(DESKTOP_FILES
|
||
|
SOURCES
|
||
|
${DESKTOP_FILES_IN}
|
||
|
)
|
||
|
add_custom_target(lxqt_panel_autostart_desktop_files ALL DEPENDS ${DESKTOP_FILES})
|
||
|
#************************************************
|
||
|
|
||
|
install(FILES
|
||
|
${DESKTOP_FILES}
|
||
|
DESTINATION "${LXQT_ETC_XDG_DIR}/autostart"
|
||
|
COMPONENT Runtime
|
||
|
)
|