Added screenshot and powershell environment script
This commit is contained in:
14
LoadEnv.ps1
Normal file
14
LoadEnv.ps1
Normal file
@@ -0,0 +1,14 @@
|
||||
$SCRIPT_DIR = Split-Path -Path $PSCommandPath
|
||||
|
||||
function run {
|
||||
param (
|
||||
[string] $PROJECT
|
||||
)
|
||||
Write-Output "Start Running $PROJECT ..."
|
||||
& $SCRIPT_DIR/build/$PROJECT/Debug/$PROJECT.exe
|
||||
}
|
||||
|
||||
function build {
|
||||
Write-Output "Starting Build..."
|
||||
& cmake --build "$SCRIPT_DIR/build"
|
||||
}
|
||||
Reference in New Issue
Block a user