diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-24 17:51:10 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:20 +0200 |
commit | 6adddda37096cbaf470bd05066d383ec4a02d034 (patch) | |
tree | dfd40530cd938a34ab47cda2ef5c313b7986167b /cmake/common.cmake | |
parent | 2e715a676b3e218b15447c9170b7f2d4cb11a9cc (diff) |
Missing variable and target call
Change-Id: If0dbac632f45ecbb122a68bea18fb6e9645b86e7
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'cmake/common.cmake')
-rw-r--r-- | cmake/common.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/common.cmake b/cmake/common.cmake index 77ef9ce..4c85498 100644 --- a/cmake/common.cmake +++ b/cmake/common.cmake @@ -339,6 +339,8 @@ endif() set(PROJECT_PKG_ENTRY_POINT ${CMAKE_SOURCE_DIR}/packaging CACHE PATH "Where package build files, like rpm.spec file or config.xml, are write.") set (PKG_TEMPLATE_PREFIX ${CMAKE_SOURCE_DIR}/etc CACHE PATH "Default Package Templates Directory") +set(SSH_TEMPLATE_DIR ${PKG_TEMPLATE_PREFIX}/ssh) +set(GDB_TEMPLATE_DIR ${PKG_TEMPLATE_PREFIX}/gdb) set(TEMPLATE_WGT_DIR "${CMAKE_SOURCE_DIR}/${PROJECT_APP_TEMPLATES_DIR}/default/wgt" CACHE PATH "Subpath to a directory where are stored needed files to build widget") set(TEMPLATE_RPM_DIR "${CMAKE_SOURCE_DIR}/${PROJECT_APP_TEMPLATES_DIR}/default/rpm" CACHE PATH "Subpath to a directory where are stored needed files to build rpm package") set(TEMPLATE_DEB_DIR "${CMAKE_SOURCE_DIR}/${PROJECT_APP_TEMPLATES_DIR}/default/deb" CACHE PATH "Subpath to a directory where are stored needed files to build deb package") @@ -370,3 +372,6 @@ macro(project_closing_msg) ${DEPENDENCIES_TARGET} ${PROJECT_TARGETS}) endif() endmacro() + +# Add RSYSTARGET +remote_targets_populate() |