pf-core/.gitignore
Luís Murta 54895a1152
Start of the personal finance core repo
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!
2023-07-31 21:32:55 +01:00

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/