https://github.com/ahajha/kitchen-sink
Testing repository for learning new technologies
https://github.com/ahajha/kitchen-sink
Last synced: 2 months ago
JSON representation
Testing repository for learning new technologies
- Host: GitHub
- URL: https://github.com/ahajha/kitchen-sink
- Owner: Ahajha
- Created: 2021-05-15T13:48:54.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-28T15:23:27.000Z (about 1 year ago)
- Last Synced: 2024-02-29T07:56:55.205Z (about 1 year ago)
- Language: C++
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kitchen-sink
Testing repository for learning new technologies## building
Run:
```
cmake -B build && cmake --build build
```
to build. The resulting executable will be `./build/sink`.If you encounter errors relating to clang, you may have to specify the compiler manually. If on a \*nix system, try
```
cmake -B build -D CMAKE_CXX_COMPILER=g++ && cmake --build build
```
instead. (Clang, at time of writing, has poor support of C++ ranges.)