Skip to content

Commit

Permalink
Merge branch '158-realsense_playback'
Browse files Browse the repository at this point in the history
  • Loading branch information
cwidisgroup committed Nov 28, 2024
2 parents 775a4e8 + 7063b23 commit 7907154
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ vcpkg_installed/
.vscode/
.cachedgitversion.txt
__pycache__/
tmp/
53 changes: 51 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,56 @@
"valarray": "cpp",
"__hash_table": "cpp",
"queue": "cpp",
"future": "cpp"
"future": "cpp",
"print": "cpp",
"stack": "cpp",
"text_encoding": "cpp",
"execution": "cpp",
"cfenv": "cpp",
"coroutine": "cpp",
"csignal": "cpp",
"filesystem": "cpp",
"scoped_allocator": "cpp",
"stdfloat": "cpp",
"unordered_set": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"xutility": "cpp"
},
"cmake.ctest.allowParallelJobs": true
"cmake.ctest.allowParallelJobs": true,
"terminal.integrated.profiles.windows": {

"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell",
"args": [
"-noexit",
"-file",
"${workspaceFolder}\\scripts\\activate.ps1"
]
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
}
}
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Implemented recording while capturing for both Realsense and Kinect (#139)
- Glfw is now used via normal dependencies, no longer slurped (#123)
- `cwipc_forward` can now serve streams to multiple connections at the same time (#151)
- Major improvements to realsense_playback (#158)

## [7.5.3] - 2024-04-30

Expand Down
5 changes: 5 additions & 0 deletions scripts/activate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ if (Test-Path -Path $candidate1BinDir) {
$binDir = $buildDir + "\bin"
}
Write-Output "binDir = " + $binDir
$binDirExists = Test-Path $binDir
if (-Not $binDirExists) {
Write-Output "binDir does not exist. Not enabling venv"
exit
}
$Env:CWIPC_LIBRARY_DIR = $binDir
$Env:PATH = $binDir + ";" + $Env:PATH
Write-Output $Env:PATH
Expand Down

0 comments on commit 7907154

Please sign in to comment.