-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.gitignore
95 lines (82 loc) · 1.35 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Disallow committing anything to deps
deps*/
# Visual studio -specific ignores.
*.suo
*.ncb
*.user
*.pdb
*.idb
*.vcproj
*.vcxproj
*.vcxproj.filters
*.lib
*.sln
*.ipch
*.sdf
*.opensdf
src/Core/Tundra/resource*.h
src/Core/Tundra/*.aps
src/Core/Tundra/*.rc
# Windows dll files
*.dll
*.exp
# Visual studio files that are generated by CMake.
*/*.dir/
src/*/*/*.dir/
src/*/*/Debug
src/*/*/Release
src/*/*/RelWithDebInfo
src/*/*/MinSizeRel
*/*/*.dir/
*/Debug/
*/Release/
*/RelWithDebInfo/
*/MinSizeRel/
tundra.sln.cache
# Unix-specific build objects
Makefile
*.o
*.a
*.so
# Android assets, build configuration and build directories
src/Android/assets
src/Android/bin
src/Android/gen
src/Android/*.properties
src/Android/proguard-project.txt
# JS bindings generator bin and obj directories
src/Plugins/JavaScript/BindingsGenerator/bin
src/Plugins/JavaScript/BindingsGenerator/obj
# CMake -specific
*.cmake
CMakeFiles
CMakeCache.txt
CMakeBuildConfig.txt
ZERO_CHECK.dir/
install_manifest.txt
# Generated documentation
doc/html/
*.tmp
# editor temporary files
*.swp
*~
*#
# Tundra bin/ and build/ files
bin/Tundra*.exe
bin/Tundra
bin/TundraTest*
bin/Tundra.log
bin/Data/Shaders/*/Cache
build-*/
install/
tools/Windows/Utils/nasm*
# SVN admin
*.svn-base
*entries
*all-wcprops
# Mac Xcode project files and dynamic libraries
*.dylib
*.DS_Store
*.xcodeproj
CMakeScripts/
tundra.build/