Skip to content

Commit d1a5e57

Browse files
committed
Merge pull request #1719 from samsheff/add-ue4
Add a .gitignore for Unreal Engine 4
2 parents fbb6dd9 + e3cd87b commit d1a5e57

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

UnrealEngine.gitignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Compiled Object files
2+
*.slo
3+
*.lo
4+
*.o
5+
*.obj
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Compiled Dynamic libraries
12+
*.so
13+
*.dylib
14+
*.dll
15+
16+
# Fortran module files
17+
*.mod
18+
19+
# Compiled Static libraries
20+
*.lai
21+
*.la
22+
*.a
23+
*.lib
24+
25+
# Executables
26+
*.exe
27+
*.out
28+
*.app
29+
*.ipa
30+
31+
# These project files can be generated by the engine
32+
*.xcodeproj
33+
*.sln
34+
*.xcodeproj
35+
*.suo
36+
*.opensdf
37+
*.sdf
38+
*.sln
39+
40+
# Precompiled Assets
41+
SourceArt/**/*.png
42+
SourceArt/**/*.tga
43+
44+
# Binary Files
45+
Binaries/*
46+
47+
# Builds
48+
Build/*
49+
50+
# Don't ignore icon files in Build
51+
!Build/**/*.ico
52+
53+
# Configuration files generated by the Editor
54+
Saved/*
55+
56+
# Compiled source files for the engine to use
57+
Intermediate/*
58+
59+
# Cache files for the editor to use
60+
DerivedDataCache/*

0 commit comments

Comments
 (0)