Added default target variant option in project configuration

This commit is contained in:
Nav
2021-04-08 20:42:23 +01:00
parent b781900a3f
commit c1c32fd1cc
7 changed files with 43 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ namespace Bloom
private:
ApplicationConfig applicationConfig;
EnvironmentConfig environmentConfig;
InsightConfig insightConfig;
EventManager& eventManager;
EventListenerPointer eventListener = std::make_shared<EventListener>("InsightEventListener");
@@ -54,6 +55,10 @@ namespace Bloom
this->environmentConfig = environmentConfig;
}
void setInsightConfig(const InsightConfig& insightConfig) {
this->insightConfig = insightConfig;
}
/**
* Entry point for Insight.
*/