-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
85 lines (75 loc) · 1.45 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
# General build artifacts
*.o
*.d
*.a
*.so
*.dylib
*.exe
*.bin
*.log
*.tmp
# Specific SubZero build outputs
/libtrading-config
/libtrading.a
/libtrading.dylib
/libtrading.so
/tags
/test-trade
# Generated tools and test binaries
/tools/cert/micex/forts
/tools/fast/fast_client
/tools/fast/fast_server
/tools/fast/fast_orderbook
/tools/fast/fast_parser
/tools/fix/fix_client
/tools/fix/fix_server
/tools/fix/fix_perf
/tools/sim/market
/tools/sim/trader
/tools/tape/tape
/tools/test-fix-client
/tools/test-fix-server
/tools/test/protocol/boe/*.bin
/tools/test/test-runner.c
/tools/test/test-suite.h
# Generated version and probe files
/LIBTRADING-VERSION-FILE
/include/libtrading/probes.h
# Generated FIX dialects
/include/libtrading/proto/iex_fix.h
/include/libtrading/proto/kcg_hotspot_fix.h
/include/libtrading/proto/mbt_fix.h
/include/libtrading/proto/micex_fix.h
/include/libtrading/proto/cme_globex_fix.h
/include/libtrading/proto/ice_os_fix.h
/lib/proto/iex_fix.c
/lib/proto/kcg_hotspot_fix.c
/lib/proto/mbt_fix.c
/lib/proto/micex_fix.c
/lib/proto/cme_globex_fix.c
/lib/proto/ice_os_fix.c
# CMake-specific files
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
/build/
# Docker-specific files
docker-compose.override.yml
*.env
# IDE/editor-related files
.vscode/
.idea/
*.iml
# OS-specific files
.DS_Store
Thumbs.db
desktop.ini
# Miscellaneous
*.bak
*.~*
# Generated files
lib/proto/*.c
include/libtrading/proto/*.h
tools/test/test-runner.c
tools/test/test-suite.h