Adding missing property to BhlProj

This commit is contained in:
Pavel Shevaev 2023-11-16 11:20:40 +03:00
parent 9cfff757c3
commit 9ffca32323
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ class BhlProj
public array $bindings_sources;
public array $postproc_sources;
public string $postproc_dll;
public string $bindings_dll;
public string $result_file;
public string $error_file;
public string $tmp_dir;
@ -60,7 +61,7 @@ function bhl_proj(?string $proj_file = null) : BhlProj
foreach($proj->bindings_sources as $k => $v)
$proj->bindings_sources[$k] = _bhl_make_abs_path($proj_file, $v);
$proj->bindings_dll= _bhl_make_abs_path($proj_file, $proj->bindings_dll);
$proj->bindings_dll = _bhl_make_abs_path($proj_file, $proj->bindings_dll);
if(isset($proj->postproc_sources))
{