forked from FluXy/SMC
-
Notifications
You must be signed in to change notification settings - Fork 49
/
.gitignore
92 lines (80 loc) · 1.63 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
# Specifies intentionally untracked file system entries to ignore.
#
# Notes:
# 1. Do not commit .gitignore files in sub directories of the repository,
# as they would have to be explicitly excluded when generating the installer,
# building the project and in other situations.
# 2. Use the full path to a dir when you want to exclude a directory
# and everything it contains. Start with repo-root, which is "/",
# and do NOT use a "/" at the end, as this would fail if that dir is a symlink.
# good example:
# /game/maps
# bad examples:
# game/maps
# game/maps/
#
# For more details about how this file works, see:
# http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
#
# The normal build directories
/tsc/build
/tsc/crossbuild
/tsc/CMakeFiles
/tsc/tsc
# Alternate build directory
/build
# Dependencies
/tsc/mruby
/tsc/cegui
# Generated
/tsc/*.log
/tsc/*.exe
/tsc/*.dll
/tsc/*.manifest
/tsc/stdout.txt
/tsc/stderr.txt
/tsc/CMakeCache.txt
/tsc/install_manifest.txt
/tsc/mruby_tsc_build_config.rb.lock
/tsc/config.hpp
/tsc/credits.cpp
/tsc/htmldocs
Thumbs.db
*.mo
*.gmo
# Arch package
/tsc/extras/archlinux/TSC
/tsc/extras/archlinux/pkg
/tsc/extras/archlinux/*.tar.xz
/tsc/extras/archlinux/src
# Visual Studio
/tsc/makefiles/MSVC9.0/Debug
/tsc/makefiles/MSVC9.0/Mixed
/tsc/makefiles/MSVC9.0/Release
/tsc/makefiles/MSVC9.0/*.user
/tsc/makefiles/MSVC9.0/*.aps
/tsc/makefiles/AQtime
/tsc/extras/binaries
*.ncb
*.suo
*.bsc
*.ilk
*.pgd
*.pgc
# QT Creator
CMakeLists.txt.user*
# Vim
*.swp
# Gedit and Emacs
*~
# Flatpak
/.flatpak-builder
/tsc/.flatpak-builder/
# Installer
/tsc/extras/Setup/*.exe
/tsc/icon.rc
# Extra
/usable
/*.txt
/*.rtf
/*.lnk