Fixes to build scripts

This commit is contained in:
Edward R. Gonzalez 2024-01-30 01:28:55 -05:00
parent 07469bddbb
commit 2f6d3636e1
3 changed files with 5 additions and 5 deletions

View File

@ -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

Binary file not shown.

View File

@ -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) {