Skip to content
Snippets Groups Projects
Commit 15911788 authored by Mattia Mancini's avatar Mattia Mancini
Browse files

OSB-29: fixing list expansion in older cmake versions

parent c917dbab
No related branches found
No related tags found
2 merge requests!89Monitoring maintenance Epic branch merge,!1Resolve OSB-13 "Monitoringmaintenance "
...@@ -132,7 +132,7 @@ function(npm_install NPM_PACKAGE_SPECIFICATION) ...@@ -132,7 +132,7 @@ function(npm_install NPM_PACKAGE_SPECIFICATION)
add_custom_target(copy_package_json_${PACKAGE_NAME} SOURCES "${JSON_PACKAGE_SPECIFICATION}") add_custom_target(copy_package_json_${PACKAGE_NAME} SOURCES "${JSON_PACKAGE_SPECIFICATION}")
add_custom_target(download_npm_dependencies_${PACKAGE_NAME} SOURCES "${NPM_BINARY_DIR}/package.json") add_custom_target(download_npm_dependencies_${PACKAGE_NAME} SOURCES "${NPM_BINARY_DIR}/package.json")
add_custom_target(packing_javascript_files_${PACKAGE_NAME} ALL add_custom_target(packing_javascript_files_${PACKAGE_NAME} ALL
SOURCES "${INSTALLED_SOURCE_FILES}" "${INSTALLED_PUBLIC_FILES}" "${NPM_BINARY_DIR}/node_modules" "${NPM_BINARY_DIR}/package-lock.json") SOURCES ${INSTALLED_SOURCE_FILES} ${INSTALLED_PUBLIC_FILES} "${NPM_BINARY_DIR}/node_modules" "${NPM_BINARY_DIR}/package-lock.json")
add_custom_target(start_development_server_${PACKAGE_NAME} add_custom_target(start_development_server_${PACKAGE_NAME}
SOURCES "${NPM_BINARY_DIR}/node_modules" "${NPM_BINARY_DIR}/package-lock.json" "${NPM_BINARY_DIR}/package.json" SOURCES "${NPM_BINARY_DIR}/node_modules" "${NPM_BINARY_DIR}/package-lock.json" "${NPM_BINARY_DIR}/package.json"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment