Adds: - barebones CMakeLists.txt with googletest and doxygen included - GPL v3.0 or later license - simple .gitignore - .clang-format and .clang-tidy The clang-tidy is only applied within the sources of this project. If it was included on the top-level CMakeLists.txt it would throw errors on the gtest compilation. Let's have some fun!
36 lines
302 B
Plaintext
36 lines
302 B
Plaintext
# Prerequisites
|
|
*.d
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
*.smod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
|
|
# CMake build directory
|
|
build/
|