https://github.com/faheel/sample-cpp-ci
A sample C++ project with continuous integration
https://github.com/faheel/sample-cpp-ci
ci continuous-integration cpp
Last synced: 3 months ago
JSON representation
A sample C++ project with continuous integration
- Host: GitHub
- URL: https://github.com/faheel/sample-cpp-ci
- Owner: faheel
- License: mit
- Created: 2017-07-04T20:05:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-06T05:06:24.000Z (almost 8 years ago)
- Last Synced: 2025-01-18T22:12:29.774Z (5 months ago)
- Topics: ci, continuous-integration, cpp
- Language: C++
- Size: 85 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sample C++ CI
[](https://travis-ci.org/faheel/Sample-Cpp-CI)
A sample C++ project with continuous integration.
## Directory structure
Directory | Contains
----------|---------
bin | program and test binaries
build | object and dependency files
include | header files
src | source code
test | test code### Tree
```
.
├── bin
│ ├── data_structures
│ └── number_theory
├── build
│ ├── data_structures
│ └── number_theory
├── include
│ ├── data_structures
│ │ ├── disjoint_set.cpp
│ │ └── disjoint_set.hpp
│ └── third_party
│ └── catch.hpp
├── Makefile
├── src
│ └── number_theory
│ └── fibonacci.cpp
└── test
├── data_structures
│ └── disjoint_set.test.cpp
└── number_theory
└── fibonacci.test.cpp
```