ultimate-media-tracker/.gitignore
Tronax 7a4f3f312b
build: add Linux and Windows build scripts with NSIS installer
build-linux.sh configures and builds via CMake. build-windows.sh builds
in MSYS2/MINGW64, bundles Qt and transitive MinGW DLLs via windeployqt
plus an ldd pass, and produces an NSIS installer (installer.nsi). Ignore
the dist/ output and generated Setup.exe.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-15 02:37:19 +02:00

41 lines
487 B
Text

# ---- CMake / C++ build ----
/build/
build*/
cmake-build-*/
CMakeCache.txt
CMakeFiles/
CMakeUserPresets.json
*.o
*.obj
*.a
*.so
*.dylib
# Qt generated (AUTOMOC/AUTOUIC/AUTORCC)
moc_*.cpp
ui_*.h
qrc_*.cpp
*.moc
# ---- Windows packaging ----
dist/
*-Setup.exe
# ---- Go server ----
server/umt-tmdb-proxy
server/*.exe
# Secrets / local config (keep .env.example tracked)
.env
server/.env
*.local
# ---- Editors / IDEs ----
.vscode/
.idea/
*.swp
*~
# ---- OS ----
.DS_Store
Thumbs.db