https://github.com/quantumsheep/taco
Take the control back over your terminal.
https://github.com/quantumsheep/taco
cpp cpp17 library terminal
Last synced: 2 months ago
JSON representation
Take the control back over your terminal.
- Host: GitHub
- URL: https://github.com/quantumsheep/taco
- Owner: quantumsheep
- License: mit
- Created: 2019-10-03T21:57:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-05T22:02:18.000Z (almost 7 years ago)
- Last Synced: 2025-02-10T08:47:51.043Z (over 1 year ago)
- Topics: cpp, cpp17, library, terminal
- Language: C++
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terminal Absolute Control and Owning
Take the control back over your terminal.
TACO implements utilities that ease the development of terminal applications, games, and other.
# Building it manually
## Install CMake
- Debian/Ubuntu: `sudo apt-get install cmake`
- MacOS (Brew): `brew install cmake`
- Windows: https://cmake.org/download/
## Get the source
```bash
git clone https://github.com/quantumsheep/taco.git
```
or via `git submodule`:
```bash
git submodule add https://github.com/quantumsheep/taco.git
```
## Configure TACO inside a CMakeLists.txt file
```cmake
set(TACO_PATH taco)
add_subdirectory(${TACO_PATH})
include_directories(${TACO_PATH}/include)
```
### Link with `taco` (equivalent of `-ltaco`)
```cmake
target_link_libraries(${PROJECT_NAME} taco)
```