forked from NREL/EnergyPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
51 lines (44 loc) · 817 Bytes
/
.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
*.a
*.d
*.dll
*.exe
*.gcda
*.ilk
*.lib
*.log
*.map
*.o
*.o-*
*.obj
*.optrpt
*.orig
*.pdb
*.res
*.so
*.so.*
*~
.directory
.DS_Store
# ignore Energy+.schema.epJSON while it is auto-generated from IDD
Energy+.schema.epJSON.in
# now that we have python, ignore some things
*.pyc
# 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-debug
# App-specific project files, for example, for Geany IDE:
*.geany
.project
.cproject
.idea
.se
# vim temp file:
*.swp
# py2app puts things inside dist/ and build/, build/ is already ignored, just add dist/
dist