diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-03-21 09:49:28 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-03-22 13:58:00 +0000 |
commit | 4bc6493ef950a6654067665578594b697527221f (patch) | |
tree | 3965d9b720310c5d259dc47b96ac63b9e348d94f /CMakeLists.txt | |
parent | 027d153252cd2c9acd9343a620371bc0602ec213 (diff) |
Update for app framework removalmarlin_13.0.1marlin_13.0.0marlin/13.0.1marlin/13.0.013.0.113.0.0marlin
Changes:
- Remove the autobuild scripts and config.xml used by the app
framework widget build.
- Update the CMake files to just build a "cluster-gauges" binary
and install it into /usr/bin by default.
- Remove the code in main.cpp that handled reading the WebSocket
command-line arguments and passing them to binding related
code.
Bug-AGL: SPEC-4306
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I6c6c80836931af3355f1b793a20e5ccdf683c48d
(cherry picked from commit 23eaf7da1f7d252aefddf9e41e52c745b7433b50)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bf284f7..b75e696 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,6 @@ ########################################################################### # Copyright 2015, 2016, 2017 IoT.bzh +# Copyright 2022 Konsulko Group # # Author: romain Forlot <romain.forlot@iot.bzh> # @@ -18,4 +19,4 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.3) -include(${CMAKE_CURRENT_SOURCE_DIR}/conf.d/cmake/config.cmake) +add_subdirectory(app) |