132 lines
1.6 KiB
Plaintext
132 lines
1.6 KiB
Plaintext
# Explcitly ignore annoying Windows files, regardless of where they are
|
|
[Dd]esktop.ini
|
|
Thumbs.db
|
|
|
|
# Explcitly ignore annoying macOS files, regardless of where they are
|
|
.DS_Store
|
|
|
|
# Makefile; only in the project root
|
|
/Makefile
|
|
|
|
# CMake; only in the project root
|
|
/CMakeLists.txt
|
|
|
|
# QMake / Qt Creator
|
|
*.pro
|
|
*Config.pri
|
|
*Defines.pri
|
|
*Header.pri
|
|
*Includes.pri
|
|
*Source.pri
|
|
.qmake.stash
|
|
*.autosave
|
|
*.pro.user
|
|
*.pro.user.*
|
|
CMakeLists.txt.user
|
|
CMakeLists.txt.user.*
|
|
|
|
# Visual Studio
|
|
.vs/
|
|
.vsconfig
|
|
*.sln
|
|
*.suo
|
|
*.opensdf
|
|
*.sdf
|
|
*.VC.db
|
|
*.VC.opendb
|
|
|
|
# Visual Studio Code
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Code::Blocks
|
|
*.workspace
|
|
|
|
# CodeLite
|
|
*CodeLitePreProcessor.txt
|
|
|
|
# KDevelop
|
|
.kdev4/
|
|
*.kdev4
|
|
|
|
# CLion
|
|
*CodeCompletionFolders.txt
|
|
|
|
# IntelliJ IDE
|
|
.idea/
|
|
|
|
# Xcode
|
|
*.xcodeproj
|
|
*.xcworkspace
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
*.ipa
|
|
|
|
# Precompiled Assets
|
|
SourceArt/**/*.png
|
|
SourceArt/**/*.tga
|
|
|
|
# Binary Files
|
|
Binaries/*
|
|
Plugins/*/Binaries/*
|
|
|
|
# Builds
|
|
Build/*
|
|
|
|
# Whitelist PakBlacklist-<BuildConfiguration>.txt files
|
|
!Build/*/
|
|
Build/*/**
|
|
!Build/*/PakBlacklist*.txt
|
|
|
|
# Don't ignore icon files in Build
|
|
!Build/**/*.ico
|
|
|
|
# Built data for maps
|
|
!*_BuiltData.uasset
|
|
|
|
# Configuration files generated by the Editor
|
|
Saved/*
|
|
|
|
# Compiled source files for the engine to use
|
|
Intermediate/*
|
|
Plugins/*/Intermediate/*
|
|
|
|
# Cache files for the editor to use
|
|
DerivedDataCache/*
|
|
|
|
# Misc
|
|
.ignore
|
|
|
|
# The Platforms folder
|
|
Platforms/
|
|
|
|
# Rider .uproject configuration
|
|
*.DotSettings.user
|
|
*.uproject.DotSettings.user |