summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/CMakeLists.txt6
-rw-r--r--cli/component.cpp5
-rw-r--r--cli/component.hpp5
-rw-r--r--cli/main.cpp5
-rw-r--r--cli/page.cpp5
-rw-r--r--cli/page.hpp5
6 files changed, 30 insertions, 1 deletions
diff --git a/cli/CMakeLists.txt b/cli/CMakeLists.txt
index 56fc76f..b11226f 100644
--- a/cli/CMakeLists.txt
+++ b/cli/CMakeLists.txt
@@ -1,6 +1,10 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
FetchContent_Declare(ftxui
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
- GIT_TAG v6.0.2
+ GIT_TAG v6.1.8
GIT_PROGRESS TRUE
GIT_SHALLOW TRUE
EXCLUDE_FROM_ALL
diff --git a/cli/component.cpp b/cli/component.cpp
index 6218379..0419ad4 100644
--- a/cli/component.cpp
+++ b/cli/component.cpp
@@ -1,3 +1,8 @@
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/.
+ */
#include "component.hpp"
#include <sstream>
diff --git a/cli/component.hpp b/cli/component.hpp
index 8ae3e67..a396036 100644
--- a/cli/component.hpp
+++ b/cli/component.hpp
@@ -1,3 +1,8 @@
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/.
+ */
#pragma once
#include <optional>
diff --git a/cli/main.cpp b/cli/main.cpp
index b080ca8..ca7a8c5 100644
--- a/cli/main.cpp
+++ b/cli/main.cpp
@@ -1,3 +1,8 @@
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/.
+ */
#include <filesystem>
#include <ftxui/component/screen_interactive.hpp>
diff --git a/cli/page.cpp b/cli/page.cpp
index c0e1594..3f83682 100644
--- a/cli/page.cpp
+++ b/cli/page.cpp
@@ -1,3 +1,8 @@
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/.
+ */
#include "page.hpp"
#include <algorithm>
diff --git a/cli/page.hpp b/cli/page.hpp
index 66ea8a0..3312d55 100644
--- a/cli/page.hpp
+++ b/cli/page.hpp
@@ -1,3 +1,8 @@
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at https://mozilla.org/MPL/2.0/.
+ */
#pragma once
#include <ftxui/component/event.hpp>