diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-11-11 11:40:00 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-11-11 11:40:00 +0100 |
commit | 59e54f29fda791846496f2eea904c5d095c3edf4 (patch) | |
tree | fd69236234bb6eb4432a54e9da225948bc0cafbe | |
parent | 47a902ea3e406bfa40f3d2953f9ab5ce43c281d0 (diff) |
choose the right type
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | agl-identity-service/conf.d/cmake/config.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/agl-identity-service/conf.d/cmake/config.cmake b/agl-identity-service/conf.d/cmake/config.cmake index 9b59b58..04a9d45 100644 --- a/agl-identity-service/conf.d/cmake/config.cmake +++ b/agl-identity-service/conf.d/cmake/config.cmake @@ -148,14 +148,14 @@ set(WIDGET_CONFIG_TEMPLATE ${CMAKE_CURRENT_SOURCE_DIR}/conf.d/wgt/config.xml.in # content.src designates the relative path of the binary. # For such application, only security setup is made. # -set(WIDGET_TYPE application/vnd.agl.native) +set(WIDGET_TYPE application/vnd.agl.service) # Mandatory Widget entry point file of the main unit # -------------------------------------------------------------- # This is the file that will be executed, loaded, # at launch time by the application framework. # -set(WIDGET_ENTRY_POINT irrelevant) +set(WIDGET_ENTRY_POINT config.xml) # Optional dependencies order # --------------------------- |