Fixes to build scripts
This commit is contained in:
parent
07469bddbb
commit
2f6d3636e1
@ -63,8 +63,6 @@ push-location $path_root
|
||||
new-item -ItemType Directory -Path 'build'
|
||||
}
|
||||
|
||||
& $update_deps
|
||||
|
||||
function build-prototype
|
||||
{
|
||||
push-location $path_code
|
||||
@ -90,6 +88,8 @@ push-location $path_root
|
||||
return
|
||||
}
|
||||
|
||||
& $update_deps
|
||||
|
||||
$build_args = @()
|
||||
$build_args += $flag_build
|
||||
$build_args += './host'
|
||||
|
BIN
scripts/debug.rdbg
Normal file
BIN
scripts/debug.rdbg
Normal file
Binary file not shown.
@ -35,7 +35,7 @@ if (Test-Path -Path $path_odin)
|
||||
& .\build.bat
|
||||
pop-location
|
||||
|
||||
$binaries_dirty = true
|
||||
$binaries_dirty = $true
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -51,14 +51,14 @@ else
|
||||
& .\build.bat
|
||||
pop-location
|
||||
|
||||
$binaries_dirty = true
|
||||
$binaries_dirty = $true
|
||||
}
|
||||
|
||||
$path_vendor = join-path $path_odin 'vendor'
|
||||
$path_vendor_raylib = join-path $path_vendor 'raylib'
|
||||
$path_raylib_dlls = join-path $path_vendor_raylib 'windows'
|
||||
|
||||
if ( $binaries_dirty )
|
||||
if ( $binaries_dirty -or $true )
|
||||
{
|
||||
$third_party_dlls = Get-ChildItem -Path $path_raylib_dlls -Filter '*.dll'
|
||||
foreach ($dll in $third_party_dlls) {
|
||||
|
Loading…
Reference in New Issue
Block a user