From 88ba9e913bdc70b1f1cc07eb626d61420f0aa600 Mon Sep 17 00:00:00 2001 From: joker2770 <1214220480@qq.com> Date: Tue, 7 Feb 2023 14:51:53 +0800 Subject: [PATCH 1/3] feats: add gitignore for temporary files of Qt, build results, and so on. :zap: Signed-off-by: joker2770 <1214220480@qq.com> --- .gitignore | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/.gitignore b/.gitignore index 8d723bc..327a98c 100644 --- a/.gitignore +++ b/.gitignore @@ -396,3 +396,61 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml + + +# C++ objects and libs +*.slo +*.lo +*.o +*.a +*.la +*.lai +*.so +*.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-* +*.qm +*.prl + +# Qt unit tests +target_wrapper.* + +# QtCreator +*.autosave + +# QtCreator Qml +*.qmlproject.user +*.qmlproject.user.* + +# QtCreator CMake +CMakeLists.txt.user* + +# QtCreator 4.8< compilation database +compile_commands.json + +# QtCreator local machine specific files for imported projects +*creator.user* + +[Bb]uild/ +.vscode/ +.vs/ -- Gitee From d04007a88adbfb2eabbcec1bf65e95fa5a7e9f5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=AC=E5=B1=B1=E8=99=8E?= Date: Tue, 7 Feb 2023 12:38:40 +0000 Subject: [PATCH 2/3] =?UTF-8?q?update=20.gitignore.=20qm=20=E6=9A=82?= =?UTF-8?q?=E6=97=B6=E8=BF=98=E6=98=AF=E6=8F=90=E4=BA=A4=E4=B8=80=E4=B8=8B?= =?UTF-8?q?=EF=BC=8C=E8=BF=99=E4=B8=AA=E6=98=AF=E7=BF=BB=E8=AF=91=E5=90=8E?= =?UTF-8?q?=E7=9A=84=E8=AF=AD=E8=A8=80=E5=8C=85=E6=96=87=E4=BB=B6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 爬山虎 --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 327a98c..f44c79a 100644 --- a/.gitignore +++ b/.gitignore @@ -429,7 +429,6 @@ ui_*.h *.jsc Makefile* *build-* -*.qm *.prl # Qt unit tests -- Gitee From 4f0d85439322663d365268ee2c85609e31445a76 Mon Sep 17 00:00:00 2001 From: Joker2770 <1214220480@qq.com> Date: Tue, 7 Feb 2023 13:11:10 +0000 Subject: [PATCH 3/3] update .gitignore. Signed-off-by: Joker2770 <1214220480@qq.com> --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitignore b/.gitignore index 5af6af5..6332386 100644 --- a/.gitignore +++ b/.gitignore @@ -397,6 +397,28 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml +# Created by https://www.toptal.com/developers/gitignore/api/cmake +# Edit at https://www.toptal.com/developers/gitignore?templates=cmake + +### CMake ### +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps + +### CMake Patch ### +# External projects +*-prefix/ + +# End of https://www.toptal.com/developers/gitignore/api/cmake +!/Makefile # C++ objects and libs *.slo -- Gitee