Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manid2/cpp-programs
C++ programs
https://github.com/manid2/cpp-programs
autotools cmake cpp examples learn-by-doing reuse
Last synced: 25 days 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 (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T17:02:15.000Z (3 months ago)
- Last Synced: 2024-08-15T19:06:57.148Z (3 months ago)
- Topics: autotools, cmake, cpp, examples, learn-by-doing, reuse
- Language: C++
- Homepage:
- Size: 815 KB
- Stars: 2
- Watchers: 2
- 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 fileSHOW_TEST_OUTPUT=1 make -check # run test with debug output
```