summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Desneux <stephane.desneux@iot.bzh>2018-11-06 18:22:44 +0000
committerGerrit Code Review <gerrit@automotivelinux.org>2018-11-06 18:22:44 +0000
commitdcdff18c4f09406ca1ec522fbde3f6f7342d8423 (patch)
tree28addd966fc2a379740521fadcdcdeaa99b765ae
parent35d5206a64c88d49e5b8c91b91d8710bca1d4c8e (diff)
parent381098a607f2a02400d472198817f182f43725fd (diff)
Merge "Fix: missing files in test widget"
-rw-r--r--cmake/cmake.d/03-macros.cmake4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmake/cmake.d/03-macros.cmake b/cmake/cmake.d/03-macros.cmake
index 651e3d7..0a94564 100644
--- a/cmake/cmake.d/03-macros.cmake
+++ b/cmake/cmake.d/03-macros.cmake
@@ -608,7 +608,9 @@ You need a config.xml template: please specify WIDGET_CONFIG_TEMPLATE correctly.
add_custom_target(packaging_wgt DEPENDS ${PROJECT_PKG_BUILD_DIR}/config.xml)
add_custom_target(widget DEPENDS ${WGT_NAME}.wgt)
add_custom_target(packaging_test_wgt DEPENDS ${PROJECT_PKG_TEST_DIR}/config.xml ${PROJECT_PKG_TEST_DIR}/bin/launcher)
- add_custom_target(test_widget DEPENDS ${WGT_NAME}-test.wgt)
+ add_custom_target(test_widget DEPENDS ${WGT_NAME}-test.wgt
+ ${PROJECT_PKG_TEST_DIR}/config.xml
+ ${PROJECT_PKG_TEST_DIR}/bin/launcher)
endif()
add_dependencies(widget populate packaging_wgt)