https://github.com/maximkanet/paint-cpp
Paint in linux terminal
https://github.com/maximkanet/paint-cpp
Last synced: 11 months ago
JSON representation
Paint in linux terminal
- Host: GitHub
- URL: https://github.com/maximkanet/paint-cpp
- Owner: MaximkaNet
- Created: 2024-09-12T22:02:06.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T11:29:43.000Z (almost 2 years ago)
- Last Synced: 2024-09-14T11:51:38.357Z (almost 2 years ago)
- Language: C++
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Paint in linux terminal
Works on linux only!
**Program not realeased yet!**
### Requirements
- Linux
- CMake (build system)
- Clang (c++ compiler)
### To run application:
1. Configure the project
- In root folder of this project make directory, for example: `build`. Run this command `mkdir build`.
- Next run `cd build && cmake ../`. You will see configuration logs and after that `-- Configuring done (...)`
2. Build the project
- Run build command `cmake --build .`.
3. Run executable
- You can run executable program in `build` folder. To run it: `./canvas_app`
**Congrats! You run Paint in linux terminal.**