https://github.com/manid2/cpp-programs
C++ programs
https://github.com/manid2/cpp-programs
autotools cmake cpp examples learn-by-doing reuse
Last synced: 6 months ago
JSON representation
C++ programs
- Host: GitHub
- URL: https://github.com/manid2/cpp-programs
- Owner: manid2
- License: gpl-3.0
- Created: 2018-04-09T18:49:47.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T17:02:15.000Z (over 1 year ago)
- Last Synced: 2025-06-27T20:43:15.250Z (10 months ago)
- Topics: autotools, cmake, cpp, examples, learn-by-doing, reuse
- Language: C++
- Homepage:
- Size: 815 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
C++ programs
============
Example C++ programs to learn and reuse for development tasks.
Build & test
------------
This repository uses Gnu Makefile to build & test, format source code.
```bash
make # build a test binary from .cpp source file
make -check # run the test binary
make -format # format .cpp source file
SHOW_TEST_OUTPUT=1 make -check # run test with debug output
```