├── .codedocs ├── .editorconfig ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── appveyor.yml ├── cmake └── Modules │ └── CodeCoverage.cmake ├── codecov.yml ├── doc ├── CMakeLists.txt ├── Doxyfile.in ├── directory_structure.md ├── main_page.md ├── setting_up_ci.md ├── setting_up_documentation.md └── variables_and_targets.md ├── include └── project-abbr │ ├── config.hpp.in │ ├── factorial.hpp │ └── hello_world.hpp ├── src ├── factorial.cpp ├── hello_world.cpp └── main.cpp ├── test ├── CMakeLists.txt ├── factorial_test.cpp ├── hello_world_test.cpp └── test_runner.cpp └── third_party └── doctest └── doctest.h /.codedocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/.codedocs -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/Modules/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/cmake/Modules/CodeCoverage.cmake -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/directory_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/doc/directory_structure.md -------------------------------------------------------------------------------- /doc/main_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/doc/main_page.md -------------------------------------------------------------------------------- /doc/setting_up_ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/doc/setting_up_ci.md -------------------------------------------------------------------------------- /doc/setting_up_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/doc/setting_up_documentation.md -------------------------------------------------------------------------------- /doc/variables_and_targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/doc/variables_and_targets.md -------------------------------------------------------------------------------- /include/project-abbr/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/include/project-abbr/config.hpp.in -------------------------------------------------------------------------------- /include/project-abbr/factorial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/include/project-abbr/factorial.hpp -------------------------------------------------------------------------------- /include/project-abbr/hello_world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/include/project-abbr/hello_world.hpp -------------------------------------------------------------------------------- /src/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/src/factorial.cpp -------------------------------------------------------------------------------- /src/hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/src/hello_world.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/src/main.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/factorial_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/test/factorial_test.cpp -------------------------------------------------------------------------------- /test/hello_world_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/test/hello_world_test.cpp -------------------------------------------------------------------------------- /test/test_runner.cpp: -------------------------------------------------------------------------------- 1 | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN 2 | #include "doctest.h" 3 | -------------------------------------------------------------------------------- /third_party/doctest/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnavb/cpp14-project-template/HEAD/third_party/doctest/doctest.h --------------------------------------------------------------------------------