early-access version 2853
This commit is contained in:
18
externals/vcpkg/ports/openni2/openni2deploy.ps1
vendored
Executable file
18
externals/vcpkg/ports/openni2/openni2deploy.ps1
vendored
Executable file
@@ -0,0 +1,18 @@
|
||||
# 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user