Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raehik/cxx-project-skeleton
A skeleton C++ project.
https://github.com/raehik/cxx-project-skeleton
Last synced: about 2 months ago
JSON representation
A skeleton C++ project.
- Host: GitHub
- URL: https://github.com/raehik/cxx-project-skeleton
- Owner: raehik
- License: other
- Created: 2015-07-18T12:20:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-25T15:41:15.000Z (over 9 years ago)
- Last Synced: 2024-06-11T18:31:09.324Z (7 months ago)
- Language: CMake
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
C++ project structure
=====================This is meant to act as a generic structure you can use for most C++
programs, small or large (though it could be considered overkill for
tiny programs).Directories
-----------### `include`
The `include` directory should store all headers inside another
directory with the project's name, because otherwise your source files
won't use the same includes as other source files outside of the project
using the project's library.