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

1234567891011121314151617181920
  1. #pragma once
  2. #include <vector>
  3. #include <string>
  4. #include "SourceFile.h"
  5. namespace toolchain {
  6. void pkgFlags(const std::vector<std::string> &pkgs, std::vector<std::string> &flags);
  7. void pkgLDLibs(const std::vector<std::string> &pkgs, std::vector<std::string> &flags);
  8. void compile(
  9. const std::vector<std::string> &flags,
  10. SourceFile::FileType type,
  11. const std::string &srcDir,
  12. const std::string &name,
  13. const std::string &outDir);
  14. }