-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcpp-trader.code-workspace
More file actions
50 lines (49 loc) · 1.16 KB
/
cpp-trader.code-workspace
File metadata and controls
50 lines (49 loc) · 1.16 KB
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
{
"folders": [
{
"name": "cpp_fix_codec",
"path": "../cpp_fix_codec"
},
{
"name": "cpp-trader",
"path": "."
},
{
"name": "cpp_fixed",
"path": "../cpp_fixed"
},
{
"name": "cpp_orderbook",
"path": "../cpp_orderbook"
},
{
"name": "cpp_fix_engine",
"path": "../cpp_fix_engine"
}
],
"settings": {
"boost-test-adapter-robaho.tests": [
{
"testExecutables": [
{
"glob": "**/*{_test,_test.exe}"
}
],
"debugConfig": "Test Config"
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "launch cpp-trader",
"program": "${workspaceFolder:cpp-trader}/bin/cpp-trader",
"args": [],
"cwd": "${workspaceFolder:cpp-trader}",
}
]
}
}