19 lines
921 B
PowerShell
Executable File
19 lines
921 B
PowerShell
Executable File
# Note: This function signature and behavior is depended upon by applocal.ps1
|
|
|
|
function deployOpenNI2([string]$targetBinaryDir, [string]$installedDir, [string]$targetBinaryName) {
|
|
if ($targetBinaryName -like "OpenNI2.dll") {
|
|
if(Test-Path "$installedDir\bin\OpenNI2\OpenNI.ini") {
|
|
Write-Verbose " Deploying OpenNI2 Initialization"
|
|
deployBinary "$targetBinaryDir" "$installedDir\bin\OpenNI2" "OpenNI.ini"
|
|
}
|
|
if(Test-Path "$installedDir\bin\OpenNI2\Drivers") {
|
|
Write-Verbose " Deploying OpenNI2 Drivers"
|
|
New-Item "$targetBinaryDir\OpenNI2\Drivers" -ItemType Directory -ErrorAction SilentlyContinue | Out-Null
|
|
Get-ChildItem "$installedDir\bin\OpenNI2\Drivers\*.*" -include "*.dll","*.ini" | % {
|
|
deployBinary "$targetBinaryDir\OpenNI2\Drivers" "$installedDir\bin\OpenNI2\Drivers" $_.Name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|