Initial commit
This commit is contained in:
parent
4d4ea94522
commit
2407aa35e7
5 changed files with 294 additions and 0 deletions
71
.gitignore
vendored
Normal file
71
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
# Betriebssystem-spezifische Dateien
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Qt Creator spezifisch
|
||||
*.pro.user
|
||||
*.pro.user.*
|
||||
*.qbs.user
|
||||
*.qbs.user.*
|
||||
*.qmlproject.user
|
||||
*.qmlproject.user.*
|
||||
*.autosave
|
||||
|
||||
# Build-Verzeichnisse
|
||||
build*/
|
||||
*.o
|
||||
*.obj
|
||||
*.lo
|
||||
*.la
|
||||
*.lai
|
||||
*.a
|
||||
*.lib
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.exe
|
||||
*.out
|
||||
|
||||
# Kompilierte Bibliotheken und temporäre Dateien
|
||||
*.moc
|
||||
*.qrc
|
||||
*.cmi
|
||||
*.rcc
|
||||
|
||||
# Qt spezifische Dateien
|
||||
Makefile
|
||||
Makefile.*
|
||||
.qmake.stash
|
||||
qrc_*.cpp
|
||||
moc_*.cpp
|
||||
ui_*.h
|
||||
|
||||
# CMake spezifisch
|
||||
CMakeLists.txt.user
|
||||
CMakeCache.txt
|
||||
CMakeFiles/
|
||||
cmake_install.cmake
|
||||
CTestTestfile.cmake
|
||||
|
||||
# Logs und temporäre Dateien
|
||||
*.log
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
*.tags
|
||||
*.gz
|
||||
|
||||
# Debugger-Symbole
|
||||
*.dSYM/
|
||||
*.ipdb
|
||||
*.pdb
|
||||
*.pch
|
||||
|
||||
# MinGW spezifisch
|
||||
*.a
|
||||
*.d
|
||||
*.map
|
||||
*.obj
|
||||
|
||||
# VSCode spezifisch (falls du es verwendest)
|
||||
.vscode/
|
||||
Loading…
Add table
Add a link
Reference in a new issue