Merge
This commit is contained in:
Claudio Maggioni 2016-03-18 18:50:22 +01:00
commit e6cf99dd92
1 changed files with 9 additions and 0 deletions

View File

@ -2,3 +2,12 @@
Library that provides a bash-like interface for CLI C++ programs
### Credits
Code based on "Write a Shell in C" - by Stephen Brennan (http://brennan.io/2015/01/16/write-a-shell-in-c/)
The code has been slightly modified.
### The library
The library can be compiled as shared library with the CMakeLists.txt file already in msh-console-library/, or it can be compiled with these commands:
```
cd msh-console-library
g++ -Wall -fPIC -std=c++11 -c command.cpp commands.cpp shell.cpp commandexecutor.cpp
g++ -shared -Wl,-soname,libmshconsole.so.1.0.0 -o libmshconsole.so.1.0.0 commandexecutor.o command.o commands.o shell.o
```