mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-03 19:38:44 -05:00
* Removed old UDM-related update scripts that are no longer needed. * Applied target update script * Removed unneeded data folder from user partition * Removed dummy personalization.json
18 lines
482 B
CMake
18 lines
482 B
CMake
function(add_scripts_target)
|
|
cmake_parse_arguments(
|
|
_ARG
|
|
""
|
|
"TARGET;DEST_DIR;PRODUCT"
|
|
"DEPENDS"
|
|
${ARGN}
|
|
)
|
|
|
|
add_custom_target(
|
|
${_ARG_TARGET}
|
|
DEPENDS ${_ARG_DEPENDS}
|
|
|
|
COMMAND ${PROJECT_SOURCE_DIR}/scripts/lua/install.sh ${_ARG_PRODUCT} ${_ARG_DEST_DIR}
|
|
COMMENT
|
|
"Installing scripts for ${_ARG_PRODUCT} to ${_ARG_DEST_DIR} directory"
|
|
)
|
|
endfunction() |