Przeglądaj źródła

Updated CMake to have project.

Steve Thielemann 3 lat temu
rodzic
commit
97e37bef75
2 zmienionych plików z 10 dodań i 1 usunięć
  1. 4 0
      CMakeLists.txt
  2. 6 1
      README.md

+ 4 - 0
CMakeLists.txt

@@ -1,5 +1,9 @@
 cmake_minimum_required(VERSION 3.2)
 
+project(door++
+  VERSION 0.1
+  LANGUAGES CXX)
+  
 # zf_log target (required)
 set(HEADERS_DIR ${CMAKE_CURRENT_SOURCE_DIR})
 set(HEADERS door.h)

+ 6 - 1
README.md

@@ -24,6 +24,10 @@ int main( int argc, char * argv[] ) {
 
 * door::Line
 
+A line is text that can be updated, and can be colorized by the use of a rendering function.
+
+If you want all uppercase letters one color, and lowercase another.  That can be done.
+
 ```
 /*
  * Custom line rendering fuction.
@@ -109,13 +113,14 @@ mtitle.setPadding(" ", title_color);
 m.setTitle(std::make_unique<door::Line>(mtitle), 1);
 
 // Define colors for the menu
-
+// menu line selected
 m.setRender(true, door::Menu::makeRender(
                   door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
                   door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
                   door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
                   door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD)));
 
+// menu line unselected
 m.setRender(false, door::Menu::makeRender(
                    door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
                    door::ATTR::BOLD),