mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Adding a .gitignore file for QT projects tells git to ignore the .user file generated by QT Creator. This .gitignore file was taken from https://github.com/github/gitignore/blob/master/Qt.gitignore
36 lines
293 B
Plaintext
36 lines
293 B
Plaintext
# C++ objects and libs
|
|
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.a
|
|
*.la
|
|
*.lai
|
|
*.so
|
|
*.dll
|
|
*.dylib
|
|
|
|
# Qt-es
|
|
|
|
/.qmake.cache
|
|
/.qmake.stash
|
|
*.pro.user
|
|
*.pro.user.*
|
|
*.qbs.user
|
|
*.qbs.user.*
|
|
*.moc
|
|
moc_*.cpp
|
|
qrc_*.cpp
|
|
ui_*.h
|
|
Makefile*
|
|
*-build-*
|
|
|
|
# QtCreator
|
|
|
|
*.autosave
|
|
|
|
#QtCtreator Qml
|
|
*.qmlproject.user
|
|
*.qmlproject.user.*
|
|
|