-
Notifications
You must be signed in to change notification settings - Fork 86
/
.gitignore
53 lines (44 loc) · 908 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
52
53
# Git
.gitattributes
# Build artifacts
*.obj
*.pyc
lib/
obj/
main
opt
# CMake
/build
# Bin
/bin/*
/tests/bin
!bin/occa.cpp
# Auto-generated code
/.compiledDefines
/include/occa/defines/compiledDefines.hpp
/include/occa/scripts
/include/occa/core/kernelOperators.hpp_codegen
/src/core/kernelOperators.cpp_codegen
/src/occa/internal/utils/runFunction.cpp_codegen
/include/occa/defines/macros.hpp_codegen
# Binaries generated to fetch compiler information
/scripts/compiler/compilerSupportsMPI
/scripts/compiler/findFortranCompilerVendor
/scripts/compiler/fortranCompilerSupportsMPI
/scripts/compiler/fortranCompilerSupportsOpenMP
# Documentation
.doxygen_output
# Debug
.DS_Store
*.dSYM
# Coverage
*.gcno
*.gcda
*.gcov
coverage*
# Visual Studio
editorTools/visualStudio/*
!editorTools/visualStudio/occa.sln
!editorTools/visualStudio/occa.vcxproj
!editorTools/visualStudio/occa.vcxproj.filters
.vscode