Adding missing property to BhlProj
This commit is contained in:
parent
9cfff757c3
commit
9ffca32323
|
@ -28,6 +28,7 @@ class BhlProj
|
||||||
public array $bindings_sources;
|
public array $bindings_sources;
|
||||||
public array $postproc_sources;
|
public array $postproc_sources;
|
||||||
public string $postproc_dll;
|
public string $postproc_dll;
|
||||||
|
public string $bindings_dll;
|
||||||
public string $result_file;
|
public string $result_file;
|
||||||
public string $error_file;
|
public string $error_file;
|
||||||
public string $tmp_dir;
|
public string $tmp_dir;
|
||||||
|
@ -60,7 +61,7 @@ function bhl_proj(?string $proj_file = null) : BhlProj
|
||||||
|
|
||||||
foreach($proj->bindings_sources as $k => $v)
|
foreach($proj->bindings_sources as $k => $v)
|
||||||
$proj->bindings_sources[$k] = _bhl_make_abs_path($proj_file, $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))
|
if(isset($proj->postproc_sources))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue