-
Notifications
You must be signed in to change notification settings - Fork 28
/
.gitignore
81 lines (64 loc) · 1.88 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
# Ignore top level project
/.project
# streams-specific excludes
toolkit.xml
*.pm
# If you want to include a perl module, do
# !foo.pm
!CodeGenX.pm
# Ignore generated and downloaded files
/com.ibm.streamsx.inet/opt/
/com.ibm.streamsx.inet/impl/nl/*.dat
/com.ibm.streamsx.inet/impl/nl/include
/com.ibm.streamsx.inet/build.info
/release/
doc/
# generated operator models and icon files for java primitive operators
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.http/*/*.xml
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.http/*/*.gif
!com.ibm.streamsx.inet/com.ibm.streamsx.inet.http/native.function/function.xml
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.rest/*/*.xml
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.rest/*/*.gif
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.rest/*/*.jpeg
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.wsserver/*/*.xml
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.wsserver/*/*.gif
# more generated operator and function models
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.rest/native.function/SPL_JNIFunctions_com_ibm_streamsx_inet_rest.h
/com.ibm.streamsx.inet/com.ibm.streamsx.inet.rest/native.function/javaFunction.xml
/com.ibm.streamsx.inet/impl/nl/include/InetResource.h
# more generated files in samples
samples/*/output
samples/*/toolkit.xml
samples/*/.toolkitList
samples/*/bin
## java excludes
*.class
# exclude generated Java primitive operator model files
# are now genrated into separate folder src-gen which is completely ignored
#*$StreamsModel.java
# Package Files #
com.ibm.streamsx.inet/impl/lib/*.jar
*.war
*.ear
## C++ excludes
# Compiled Object files
*.slo
*.lo
*.o
# Compiled Dynamic libraries
*.so
*.dylib
# Compiled Static libraries
*.lai
*.la
*.a
# ignore these files and directories generated by SPL applications:
**/log/
**/log/
**/data/debug.*
# ignore these files generated by emacs editor:
*~
#*#
**/#*#
# ignore this file created by Mac OS:
.DS_Store