Added uthash as a git submodule
This commit is contained in:
parent
1b9a3e8c4b
commit
3b43c7aefe
4 changed files with 16 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,3 +1,6 @@
|
|||
[submodule "external/termrec"]
|
||||
path = external/termrec
|
||||
url = https://github.com/kilobyte/termrec
|
||||
[submodule "external/uthash"]
|
||||
path = external/uthash
|
||||
url = https://github.com/troydhanson/uthash
|
||||
|
|
11
README.md
11
README.md
|
@ -18,6 +18,7 @@ This bastion project does work properly with non interactive sessions, which all
|
|||
- [Monitoring](#monitoring)
|
||||
- [Backup](#backup)
|
||||
- [Scaling](#scaling)
|
||||
- [Special thanks](#special-thanks)
|
||||
|
||||
## Dependencies
|
||||
|
||||
|
@ -34,6 +35,7 @@ The following are optional dependencies :
|
|||
|
||||
This project is built using cmake :
|
||||
```
|
||||
git submodule update --init
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
|
@ -79,3 +81,12 @@ session_recording:
|
|||
## Backup
|
||||
|
||||
## Scaling
|
||||
|
||||
## Special thanks
|
||||
|
||||
I would like to thank the developers of the following projects, I am merely standing on the shoulders of giants :
|
||||
|
||||
- libconfig from http://www.hyperrealm.com/libconfig/libconfig.html
|
||||
- libssh from https://www.libssh.org/
|
||||
- libtty from https://github.com/kilobyte/termrec
|
||||
- uthash from http://troydhanson.github.io/uthash/
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
include_directories("${PROJECT_SOURCE_DIR}/external/uthash/src")
|
||||
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
|
||||
file(GLOB_RECURSE SOURCES *.c)
|
||||
|
||||
|
|
1
external/uthash
vendored
Submodule
1
external/uthash
vendored
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit e5e9ad586f3249733ab3d00bb74fcbb9433e48da
|
Reference in a new issue