forked from NREL/EnergyPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
64 lines (54 loc) · 1.04 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
*.a
*.d
*.dll
*.exe
*.gcda
*.ilk
*.lib
*.log
*.map
*.o
*.o-*
*.obj
*.optrpt
*.orig
*.pdb
*.res
*.so
*.so.*
*~
.directory
.DS_Store
# this is autogenerated in the src dir
doc/title.tex
# ignore Energy+.schema.epJSON while it is auto-generated from IDD
Energy+.schema.epJSON.in
# ignore the doxygen and sphinx built API docs
doc/readthedocs/doxygen/_build
doc/readthedocs/sphinx/_build
doc/readthedocs/sphinx/_build_c
/doc/readthedocs/sphinx/schema.rst
# now that we have python, ignore some things
*.pyc
venv
# build folder, if the dev chooses to put it there
# could also do a wildcard for build-* if we suggest that naming approach
# which could be useful for: build-eclipse, build-vs2013, build, etc.
build
builds
Build
Builds
# by default CLion uses cmake-build-debug as the build folder, so add that as well
cmake-build-*
# App-specific project files, for example, for Geany IDE:
*.geany
.project
.cproject
.idea
.se
.vs
.vscode
# vim temp file:
*.swp
# py2app puts things inside dist/ and build/, build/ is already ignored, just add dist/
dist