1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #include <cmajor/build/ExecutionContext.hpp>
 7 #include <cmajor/build/BuildOption.hpp>
 8 #include <cmajor/build/Log.hpp>
 9 
10 namespace cmajor { namespace build {
11 
12 ExecutionContext::ExecutionContext()
13 {
14     if (GetBuildOption(BuildOptions::debug))
15     {
16         log = CreateCoutLog();
17     }
18 }
19 
20 ExecutionContext::~ExecutionContext()
21 {
22 }
23 
24 } } // namespace cmajor::build