18 lines
315 B
PowerShell
Executable File
18 lines
315 B
PowerShell
Executable File
$CWD = (pwd).Path
|
|
|
|
$DIR = $PSScriptRoot
|
|
cd $DIR
|
|
|
|
Get-ChildItem -Directory | % {
|
|
$clientDir = "$DIR\$_"
|
|
$buildDir = "$DIR\$_\build"
|
|
|
|
$$ = New-Item -ItemType Directory -Force $buildDir
|
|
cd $buildDir
|
|
|
|
cmake -DDynamoRIO_DIR=C:\Users\vboxuser\DynamoRIO-Windows\cmake ..
|
|
cmake --build .
|
|
}
|
|
|
|
cd $CWD
|