We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b0418a commit 94c1f4fCopy full SHA for 94c1f4f
src/engine/engine.cpp
@@ -33,6 +33,7 @@ void Engine::compile()
33
{
34
// Resolve entities by ID
35
for (auto target : m_targets) {
36
+ std::cout << "Processing target " << target->name() << "..." << std::endl;
37
auto blocks = target->blocks();
38
for (auto block : blocks) {
39
auto section = blockSection(block->opcode());
@@ -67,6 +68,7 @@ void Engine::compile()
67
68
69
// Compile scripts to bytecode
70
71
+ std::cout << "Compiling scripts in target " << target->name() << "..." << std::endl;
72
std::vector<Variable *> variables;
73
std::vector<List *> lists;
74
std::vector<InputValue *> constInputValues;
0 commit comments