Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FTXUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Will2.Mcgregor@live.uwe.ac.uk
FTXUI
Commits
81b72071
Unverified
Commit
81b72071
authored
3 years ago
by
Arthur Sonzogni
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Move to v2.0.0 (#315)
parent
6039474a
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+5
-2
5 additions, 2 deletions
CHANGELOG.md
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
cmake/ftxui_benchmark.cmake
+6
-1
6 additions, 1 deletion
cmake/ftxui_benchmark.cmake
cmake/ftxui_test.cmake
+6
-2
6 additions, 2 deletions
cmake/ftxui_test.cmake
with
18 additions
and
6 deletions
CHANGELOG.md
+
5
−
2
View file @
81b72071
Changelog
Changelog
=========
=========
unreleased (development)
current (development)
------------------------
---------------------
2.
0.0
-----
### Features:
### Features:
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
81b72071
...
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11)
...
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11)
project
(
ftxui
project
(
ftxui
LANGUAGES CXX
LANGUAGES CXX
VERSION
0.11.1
VERSION
2.0.0
)
)
option
(
FTXUI_BUILD_DOCS
"Set to ON to build docs"
ON
)
option
(
FTXUI_BUILD_DOCS
"Set to ON to build docs"
ON
)
...
...
This diff is collapsed.
Click to expand it.
cmake/ftxui_benchmark.cmake
+
6
−
1
View file @
81b72071
...
@@ -3,7 +3,12 @@ if (NOT WIN32)
...
@@ -3,7 +3,12 @@ if (NOT WIN32)
GIT_REPOSITORY
"https://github.com/google/benchmark"
GIT_REPOSITORY
"https://github.com/google/benchmark"
GIT_TAG 62937f91b5c763a8e119d0c20c67b87bde8eff1c
GIT_TAG 62937f91b5c763a8e119d0c20c67b87bde8eff1c
)
)
FetchContent_MakeAvailable
(
googlebenchmark
)
FetchContent_GetProperties
(
googlebenchmark
)
if
(
NOT googlebenchmark_POPULATED
)
FetchContent_Populate
(
googlebenchmark
)
add_subdirectory
(
${
googlebenchmark_SOURCE_DIR
}
${
googlebenchmark_BINARY_DIR
}
EXCLUDE_FROM_ALL
)
endif
()
add_executable
(
ftxui_benchmark
add_executable
(
ftxui_benchmark
src/ftxui/dom/benchmark_test.cpp
src/ftxui/dom/benchmark_test.cpp
...
...
This diff is collapsed.
Click to expand it.
cmake/ftxui_test.cmake
+
6
−
2
View file @
81b72071
...
@@ -8,7 +8,11 @@ FetchContent_Declare( googletest
...
@@ -8,7 +8,11 @@ FetchContent_Declare( googletest
GIT_REPOSITORY
"https://github.com/google/googletest"
GIT_REPOSITORY
"https://github.com/google/googletest"
GIT_TAG 23ef29555ef4789f555f1ba8c51b4c52975f0907
GIT_TAG 23ef29555ef4789f555f1ba8c51b4c52975f0907
)
)
FetchContent_MakeAvailable
(
googletest
)
FetchContent_GetProperties
(
googletest
)
if
(
NOT googletest_POPULATED
)
FetchContent_Populate
(
googletest
)
add_subdirectory
(
${
googletest_SOURCE_DIR
}
${
googletest_BINARY_DIR
}
EXCLUDE_FROM_ALL
)
endif
()
add_executable
(
tests
add_executable
(
tests
src/ftxui/component/component_test.cpp
src/ftxui/component/component_test.cpp
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment