TheLartians /
ModernCppStarter
🚀 Kick-start your C++! A template for modern C++ projects using CMake, CI, code coverage, clang-format, reproducible dependency management and much more.
93/100 healthLoading repository data…
Elkantor / repository
A template project which shows how to configure Travis CI and AppVeyor for handling continuous integration on a simple C++ cmake based project.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A template project to show how to configure and perform tests using Travis CI and/or AppVeyor for the continuous integration.
First, clone this repository wherever you want:
git clone https://github.com/elkantor/cpp_travis_appveyor_tests
cd cpp_travis_appveyor_tests
Next, you can launch the generate.bat file inside the tools folder, if you are on Windows, and if you have the MinGW tools configured (gcc, g++...) and the Ninja build system. If not, no worries, you can simply run the following command, cmake will use the best build system depending of you OS (you must at least have Visual Studio installed on Windows):
cmake -B../build -H.. -DCMAKE_BUILD_TYPE:STRING=Release
Once the generation is done, you can build the project. You can use the build.bat file inside the tools folder, if you are on Windows, or you can type the command below:
cmake --build ../build --config Release
Now, you can run the tests of this simple Project by launching the run_tests.bat file (on Windows), or by typing the following command (on Linux or OSX):
../build/test/bin/Release/Test
To test this project on Travis CI and/or on AppVeyor, simply fork this repository, create a new account on each plateform by signing in with your github account, and then enable your forked repository. The next commit you'll submit will automaticly fired the test project's build (which is inside the test folder, at the root of this repository).
The MIT License
Copyright (C) 2018 - Victor Gallet victor.gallet@hotmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Selected from shared topics, language and repository description—not editorial ratings.
TheLartians /
🚀 Kick-start your C++! A template for modern C++ projects using CMake, CI, code coverage, clang-format, reproducible dependency management and much more.
93/100 healthcpp-best-practices /
A template CMake project to get you started with C++ and tooling
30/100 healthfilipdutescu /
A template for modern C++ projects using CMake, Clang-Format, CI, unit testing and more, with support for downstream inclusion.
kigster /
This project is aimed at jump-starting a C/C++ project that can build libraries, binaries and have a working unit test suite. It uses CMake build system and is deliberately completely minimal.
83/100 healthmadduci /
A Modern C++ cross-platform Project Template with CMake, conan (optional), cppcheck (optional) and clang-format (optional)
85/100 healthasmaloney /
📜 A template project for building Godot 4 GDExtensions using CMake
71/100 health