forked from minsuzhang/App-LabRecorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp-LabRecorder.code-workspace
More file actions
68 lines (67 loc) · 3.47 KB
/
Copy pathApp-LabRecorder.code-workspace
File metadata and controls
68 lines (67 loc) · 3.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"folders": [
{
"path": "."
},
{
"path": "../../LSL_REPOS/LSL/liblsl"
},
{
"path": "../lab-recorder-python"
},
{
"path": "../PhoLogToLabStreamingLayer"
}
],
"settings": {
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#ffd1e650", // light pink, semi-transparent
"editor.lineHighlightBorder": "#ffb6c167", // light pink border
"activityBar.background": "#ffe0ef", // very light pink
"titleBar.activeBackground": "#ffb6c1", // light pink
"titleBar.activeForeground": "#2d2d2d", // dark for contrast
"scrollbarSlider.background": "#ffb6c150", // light pink, semi-transparent
"scrollbarSlider.hoverBackground": "#ffb6c180", // slightly more opaque
"scrollbarSlider.activeBackground": "#ff69b4df", // hot pink, more visible
"activityBar.inactiveForeground": "#2d2d2d3c", // dark, semi-transparent
"activityBar.foreground": "#2d2d2d", // dark for contrast
"notebook.outputContainerBackgroundColor": "#ffd1e650", // light pink, semi-transparent
"notebook.outputContainerBorderColor": "#ff69b4", // hot pink border
"notebook.focusedCellBorder": "#ff69b4da", // hot pink, semi-transparent
"notebook.focusedEditorBorder": "#ff69b4", // hot pink
"notebook.inactiveFocusedCellBorder": "#ffb6c163", // light pink, more transparent
"titleBar.inactiveBackground": "#ffb6c18e", // faded light pink
"tab.activeBorder": "#c71585", // medium violet red for contrast
"statusBar.background": "#c71585", // medium violet red
"statusBar.foreground": "#ffffff", // white for contrast
"sideBarSectionHeader.border": "#ffb6c1" // light pink border
},
"python.languageServer": "None",
"github-actions.workflows.pinned.workflows": [
"App-LabRecorder/.github/workflows/cppcmake.yml"
],
"actionButtons": {
"customVars": {
"sevenZipDir": "C:/Users/pho/scoop/apps/7zip/current"
},
"commands": [
{
"name": "Single-File EXE",
"color": "#ed9600",
"tooltip": "Build Release and package LabRecorder-single.exe",
"useVsCodeApi": false,
"terminalName": "LabRecorder Build",
"cwd": "${workspaceFolder}",
"command": "cmake --build --preset win-release-single --target LabRecorder",
"extraCommands": [
"powershell -NoProfile -ExecutionPolicy Bypass -File \"${workspaceFolder}/scripts/windows/make-single-file-exe.ps1\" -AppExe \"${workspaceFolder}/out/build/win-vs-release-single/Release/LabRecorder.exe\" -OutDir \"${workspaceFolder}/out/build/win-vs-release-single/Release\" -OutputExe \"${workspaceFolder}/out/build/win-vs-release-single/Release/LabRecorder-single.exe\" -SevenZipDir \"${sevenZipDir}\"",
"explorer \"${workspaceFolder}/out/build/win-vs-release-single/Release\""
]
}
],
"defaultColor": "white",
"reloadButton": "↻",
"loadNpmCommands": false
}
}
}