Browse Source

Updated door_example. Build the example.

Steve Thielemann 3 years ago
parent
commit
23f71ba696
5 changed files with 14 additions and 3 deletions
  1. 3 0
      CMakeLists.txt
  2. 4 0
      README.md
  3. 1 1
      door.cpp
  4. 3 2
      examples/door-example.cpp
  5. 3 0
      make_docs.sh

+ 3 - 0
CMakeLists.txt

@@ -67,6 +67,9 @@ endif()
 
 target_include_directories(door++ PUBLIC $<BUILD_INTERFACE:${HEADERS_DIR}>)
 
+add_executable(door-example examples/door-example.cpp)
+target_link_libraries(door-example door++ pthread)
+
 ## if(ZF_LOG_LIBRARY_PREFIX)
 ##	target_compile_definitions(door++ PRIVATE "ZF_LOG_LIBRARY_PREFIX=${ZF_LOG_LIBRARY_PREFIX}")
 ## endif()

+ 4 - 0
README.md

@@ -0,0 +1,4 @@
+# Welcome to door++
+
+This is a BBS door development kit written in C++.  
+

+ 1 - 1
door.cpp

@@ -129,7 +129,7 @@ bool debug_capture = false;
  * Construct a new Door object using the commandline parameters
  * given to the main function.
  *
- * @example door_example.cpp
+ * @example door-example.cpp
  */
 Door::Door(std::string dname, int argc, char *argv[])
     : std::ostream(this), doorname{dname},

+ 3 - 2
examples/door_example.cpp → examples/door-example.cpp

@@ -1,7 +1,7 @@
 #include "door.h"
 
 int main(int argc, char *argv[]) {
-  door::Door door(argc, argv);
+  door::Door door("example", argc, argv);
 
   // reset colors, clear screen.
   door << door::reset << door::cls << door::nl;
@@ -11,7 +11,8 @@ int main(int argc, char *argv[]) {
                           door::ATTR::BOLD);
 
   // display text, reset colors, NewLine.
-  door << "Hello World" << door::reset << door::nl;
+  door << "Welcome YELLOW on BLUE!  Press a key to continue... " << door::reset
+       << door::nl;
 
   door.sleep_key(door.inactivity); // Wait for a keypress before exiting
 }

+ 3 - 0
make_docs.sh

@@ -1,2 +1,5 @@
 #!/bin/bash
 doxygen doxy.config 2>&1
+
+xdg-open docs/html/index.html
+