├── .clang-format ├── .dev └── Dockerfile ├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ ├── build-shared.yml │ └── build-static.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── clang_format.cmake ├── compiler_options.cmake ├── cpack.cmake ├── cppcheck.cmake └── dependencies.cmake ├── conanfile.txt ├── cppcheck_suppressions.txt └── project ├── CMakeLists.txt ├── helloapp ├── CMakeLists.txt └── src │ └── helloapp.cpp └── hellolib ├── CMakeLists.txt ├── include └── hellolib.h ├── src └── hellolib.cpp └── test └── hellolib_test.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/.clang-format -------------------------------------------------------------------------------- /.dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/.dev/Dockerfile -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/.github/workflows/build-shared.yml -------------------------------------------------------------------------------- /.github/workflows/build-static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/.github/workflows/build-static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.pyc 3 | .vscode 4 | CMakeUserPresets.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/README.md -------------------------------------------------------------------------------- /cmake/clang_format.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/cmake/clang_format.cmake -------------------------------------------------------------------------------- /cmake/compiler_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/cmake/compiler_options.cmake -------------------------------------------------------------------------------- /cmake/cpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/cmake/cpack.cmake -------------------------------------------------------------------------------- /cmake/cppcheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/cmake/cppcheck.cmake -------------------------------------------------------------------------------- /cmake/dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/cmake/dependencies.cmake -------------------------------------------------------------------------------- /conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/conanfile.txt -------------------------------------------------------------------------------- /cppcheck_suppressions.txt: -------------------------------------------------------------------------------- 1 | missingIncludeSystem -------------------------------------------------------------------------------- /project/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/project/CMakeLists.txt -------------------------------------------------------------------------------- /project/helloapp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/project/helloapp/CMakeLists.txt -------------------------------------------------------------------------------- /project/helloapp/src/helloapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/project/helloapp/src/helloapp.cpp -------------------------------------------------------------------------------- /project/hellolib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/project/hellolib/CMakeLists.txt -------------------------------------------------------------------------------- /project/hellolib/include/hellolib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/project/hellolib/include/hellolib.h -------------------------------------------------------------------------------- /project/hellolib/src/hellolib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/project/hellolib/src/hellolib.cpp -------------------------------------------------------------------------------- /project/hellolib/test/hellolib_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madduci/moderncpp-project-template/HEAD/project/hellolib/test/hellolib_test.cpp --------------------------------------------------------------------------------