Got it to compile with sokol changes (UNTESTED)

This commit is contained in:
2024-05-22 03:28:16 -04:00
parent 405716e52b
commit 9cd0692e56
8 changed files with 600 additions and 3 deletions

View File

@ -106,10 +106,17 @@ else
$path_vendor = join-path $path_odin 'vendor'
$path_vendor_raylib = join-path $path_vendor 'raylib'
$path_sokol_dlls = join-path $path_thirdparty 'sokol'
$path_raylib_dlls = join-path $path_vendor_raylib 'windows'
if ( $binaries_dirty -or $true )
{
$third_party_dlls = Get-ChildItem -Path $path_sokol_dlls -Filter '*.dll'
foreach ($dll in $third_party_dlls) {
$destination = join-path $path_build $dll.Name
Copy-Item $dll.FullName -Destination $destination -Force
}
$third_party_dlls = Get-ChildItem -Path $path_raylib_dlls -Filter '*.dll'
foreach ($dll in $third_party_dlls) {
$destination = join-path $path_build $dll.Name