mirror of
https://github.com/Ed94/pikuma_ps1.git
synced 2026-06-01 18:41:13 -07:00
16 lines
524 B
PowerShell
16 lines
524 B
PowerShell
$path_root = split-path -Path $PSScriptRoot -Parent
|
|
$path_build = join-path $path_root 'build'
|
|
$path_code = join-path $path_root 'code'
|
|
$path_scripts = join-path $path_root 'scripts'
|
|
$path_toolchain = join-path $path_root 'toolchain'
|
|
|
|
if ((test-path $path_build) -eq $false) {
|
|
new-item -itemtype directory -path $path_build
|
|
}
|
|
|
|
$armips = join-path $path_toolchain 'armips/build/Debug/armips.exe'
|
|
$bin2exe_lua = join-path $path_scripts 'bin2exe.lua'
|
|
$bin2exe_py = join-path $path_scripts 'bin2exe.py'
|
|
|
|
|