cmake -Bbuild -DCMAKE_TOOLCHAIN_FILE=./cmake/platforms/host.cmake
cmake --build build
Freak
├── cmake
├── fw
│ ├── cjson - a JSON parser in ANSI C
| | (https://github.com/DaveGamble/cJSON.git)
│ ├── freetype - a freely available software library to render fonts
| | (https://gitlab.freedesktop.org/freetype/freetype.git)
│ ├── media-server - a media stream library
| | (https://github.com/ireader/media-server.git)
│ ├── mongoose - a library for embedded web server
| | (https://github.com/cesanta/mongoose.git)
│ ├── nanomsg - a simple high-performance implementation of several "scalability protocols"
| | (https://github.com/nanomsg/nanomsg.git)
│ ├── ufifo - an IPC library using share-memory
| | (https://github.com/ShenChen1/ufifo.git)
│ └── uthash - C macros for hash tables and more
| (https://github.com/troydhanson/uthash.git)
├── mod
│ ├── alg-xxxx - algorithm library for xxxx platform
│ ├── app - application for user business logic
│ ├── bsp - board support package
│ ├── media - media data format wrapper library
│ ├── proto - message protocol library
│ ├── rtsp - a rtsp server
│ ├── utils - common library provided some useful functions
│ ├── vsf - video stream framework
│ ├── vsf-xxxx - vsf low-level part for xxxx platform
│ └── web - a web server for video preview
├── scripts
├── sdk
│ ├── hi3516d - hi3516d SDK
│ └── host - host SDK
└── tools
└── jsonb-c - An automatic generated binding layer for converting C structure to/from JSON messages.
(https://github.com/ShenChen1/jsonb-c.git)