From 04bb35b772ea2e3cc1edb5400cc065f7d1f8b323 Mon Sep 17 00:00:00 2001 From: Mo Elzubeir Date: Wed, 22 Oct 2025 23:01:30 -0500 Subject: [PATCH] time for one --- .gitignore | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cfede79 --- /dev/null +++ b/.gitignore @@ -0,0 +1,98 @@ +# Qt / C++ typical .gitignore + +# Build directories (CMake, qmake, other) +build*/ +cmake-build*/ +out/ +dist/ +install/ + +# CMake files +CMakeFiles/ +CMakeCache.txt +cmake_install.cmake +CTestTestfile.cmake +install_manifest.txt +Makefile + +ClippingStation.app/ +ClippingStation.app + +# qmake / Qt Creator +*.pro.user* +*.qmake.stash +*.qmake.cache + +# Qt generated sources +moc_*.cpp +*_moc.cpp +qrc_*.cpp +ui_*.h +ui_*.cpp + +# Object, library and binary files +*.o +*.obj +*.lo +*.la +*.al +*.a +*.so +*.dylib +*.dll +*.exe +*.out + +# Static analysis / indexing +*.tags +TAGS +tags +cscope.* +*.d + +# IDEs and editors +.vscode/ +.idea/ +*.swp +*~ +*.sublime-project +*.sublime-workspace +*.kate-swp +*.kdev4 +*.kmproj +*.cbp +*.workspace + +# Xcode +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +*.perspectivev3 +xcuserdata/ +*.xcworkspace +project.xcworkspace/ +build/ + +# Visual Studio +*.vcxproj.user +*.sdf +*.opensdf +*.VC.db +ipch/ +*.pdb + +# macOS / Windows +.DS_Store +Thumbs.db +ehthumbs.db + +# Misc / logs / temp +*.log +*.tmp +*.temp +*.bak + +# Generated by tools +*.pro.user.* \ No newline at end of file