allow setting config
parent
9cc4b9949b
commit
d14b7ee7ce
|
@ -27,7 +27,7 @@ macro(compile_options target_name)
|
||||||
sanitizers(${target_name})
|
sanitizers(${target_name})
|
||||||
endmacro()
|
endmacro()
|
||||||
|
|
||||||
project(blt-gp VERSION 0.4.1)
|
project(blt-gp VERSION 0.4.2)
|
||||||
|
|
||||||
include(CTest)
|
include(CTest)
|
||||||
|
|
||||||
|
|
|
@ -677,6 +677,11 @@ namespace blt::gp
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set_config(const prog_config_t& config)
|
||||||
|
{
|
||||||
|
this->config = config;
|
||||||
|
}
|
||||||
|
|
||||||
[[nodiscard]] type_provider& get_typesystem()
|
[[nodiscard]] type_provider& get_typesystem()
|
||||||
{
|
{
|
||||||
return storage.system;
|
return storage.system;
|
||||||
|
|
2
lib/blt
2
lib/blt
|
@ -1 +1 @@
|
||||||
Subproject commit 0ebbc198c5b80ca99e537460ef92fd806864fa3e
|
Subproject commit 9a05c86b02c9c45c2b384c531007416148ec4b56
|
Loading…
Reference in New Issue