diff options
author | Stephen Lane-Walsh <sdl.slane@gmail.com> | 2019-02-16 23:14:37 -0800 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2019-02-17 02:14:37 -0500 |
commit | 2c3e2b701e012294d457937e6bfbffd63dd8ae4f (patch) | |
tree | 6cc7d4e460f333d77ed83e3df2644383ad3116cc /conf/gitignore | |
parent | 16f95123cd858a84fb5d4336d07d16cb3f7f1ec7 (diff) |
conf/gitignore: add Unreal Engine (#5623)
Diffstat (limited to 'conf/gitignore')
-rw-r--r-- | conf/gitignore/UnrealEngine | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/conf/gitignore/UnrealEngine b/conf/gitignore/UnrealEngine new file mode 100644 index 00000000..19e27dcf --- /dev/null +++ b/conf/gitignore/UnrealEngine @@ -0,0 +1,76 @@ +# Visual Studio 2015 user specific files +.vs/ + +# 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 + +# These project files can be generated by the engine +*.xcodeproj +*.xcworkspace +*.sln +*.suo +*.opensdf +*.sdf +*.VC.db +*.VC.opendb + +# 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/* + + |