Build tool
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314
  1. #pragma once
  2. #include <string>
  3. #include <memory>
  4. #include "DepNode.h"
  5. #include "BXParser.h"
  6. namespace build {
  7. std::string findTargetName(const BXVariables &variables);
  8. std::unique_ptr<DepNode> buildDepTree(const std::string &outDir, BXVariables variables);
  9. }