Build tool
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.h 184B

123456789
  1. #pragma once
  2. #include <string>
  3. #include <memory>
  4. #include "DepNode.h"
  5. #include "BXParser.h"
  6. std::unique_ptr<DepNode> buildDepTree(const std::string &outDir, BXVariables variables);