add startmde
This commit is contained in:
parent
d2b48791c8
commit
fb63f03884
4 changed files with 20 additions and 0 deletions
|
|
@ -9,3 +9,4 @@ configure_file(wizard.sh.in wizard.sh)
|
||||||
add_subdirectory(mdm)
|
add_subdirectory(mdm)
|
||||||
add_subdirectory(milkwm)
|
add_subdirectory(milkwm)
|
||||||
add_subdirectory(mpanel)
|
add_subdirectory(mpanel)
|
||||||
|
add_subdirectory(startmde)
|
||||||
|
|
|
||||||
|
|
@ -13,3 +13,8 @@ target_link_libraries(
|
||||||
|
|
||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
configure_file(milkwmrc.in milkwmrc)
|
configure_file(milkwmrc.in milkwmrc)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${CMAKE_CURRENT_BINARY_DIR}/milkwmrc
|
||||||
|
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/examples/milkwm
|
||||||
|
)
|
||||||
|
|
|
||||||
9
startmde/CMakeLists.txt
Normal file
9
startmde/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
project(startmde)
|
||||||
|
|
||||||
|
include(GNUInstallDirs)
|
||||||
|
configure_file(startmde.in startmde)
|
||||||
|
|
||||||
|
install(
|
||||||
|
PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/startmde
|
||||||
|
DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
|
)
|
||||||
5
startmde/startmde.in
Executable file
5
startmde/startmde.in
Executable file
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
"@CMAKE_INSTALL_FULL_BINDIR@/mpanel" &
|
||||||
|
|
||||||
|
exec "@CMAKE_INSTALL_FULL_BINDIR@/milkwm"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue