mirror of
https://github.com/p-ranav/indicators.git
synced 2025-12-11 17:08:52 +08:00
Bumped version to v1.9
* Fixed build issues in g++ caused by missing header #54 * Using terminal width to fill the remainder of the progress bar with empty spaces #56 * Previously this was hard-coded to 10 spaces * Fixed multiple definitions in helper functions, e.g., cursor control #58 * Implemented option::ProgressType which can be incremental or decremental - Provides an easy interface to implement decremental progress (a regressing bar) #59 * Updated to latest version of termcolor #60
This commit is contained in:
@@ -5,14 +5,14 @@ if(DEFINED PROJECT_NAME)
|
||||
endif()
|
||||
|
||||
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.12")
|
||||
project(indicators VERSION 1.8.0 LANGUAGES CXX
|
||||
project(indicators VERSION 1.9.0 LANGUAGES CXX
|
||||
HOMEPAGE_URL "https://github.com/p-ranav/indicators"
|
||||
DESCRIPTION "Activity Indicators for Modern C++")
|
||||
elseif(CMAKE_VERSION VERSION_GREATER_EQUAL "3.9")
|
||||
project(indicators VERSION 1.8.0 LANGUAGES CXX
|
||||
project(indicators VERSION 1.9.0 LANGUAGES CXX
|
||||
DESCRIPTION "Activity Indicators for Modern C++")
|
||||
else()
|
||||
project(indicators VERSION 1.8.0 LANGUAGES CXX)
|
||||
project(indicators VERSION 1.9.0 LANGUAGES CXX)
|
||||
endif()
|
||||
|
||||
if(EXISTS "${CMAKE_BINARY_DIR}/conanbuildinfo.cmake")
|
||||
|
||||
Reference in New Issue
Block a user