From 044beab2406cc4d8780b8bc3704b0c4b0d4fa7c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=B1=D0=B1=D0=B0=D1=81=20=D0=93=D1=83=D1=81=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2?= Date: Tue, 27 Nov 2018 00:55:45 +0600 Subject: [PATCH] =?UTF-8?q?.gitignore=20=D1=84=D0=B0=D0=B9=D0=BB=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20C++=20=D0=B8=20Qt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b7a99c --- /dev/null +++ b/.gitignore @@ -0,0 +1,84 @@ +# --------------------------------------------------------------------------- +# https://github.com/github/gitignore/blob/master/C++.gitignore + +# 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 + +# --------------------------------------------------------------------------- +# https://github.com/github/gitignore/blob/master/Qt.gitignore + +# C++ objects and libs +*.slo +*.lo +*.o +*.a +*.la +*.lai +*.so +*.dll +*.dylib + +# Qt-es +object_script.*.Release +object_script.*.Debug +*_plugin_import.cpp +/.qmake.cache +/.qmake.stash +*.pro.user +*.pro.user.* +*.qbs.user +*.qbs.user.* +*.moc +moc_*.cpp +moc_*.h +qrc_*.cpp +ui_*.h +*.qmlc +*.jsc +Makefile* +*build-* + +# Qt unit tests +target_wrapper.* + +# QtCreator +*.autosave + +# QtCreator Qml +*.qmlproject.user +*.qmlproject.user.* + +# QtCreator CMake +CMakeLists.txt.user* + +# ---------------------------------------------------------------------------