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.

SourceFile.h 282B

12345678910111213141516
  1. #pragma once
  2. #include <vector>
  3. #include <string>
  4. class SourceFile {
  5. public:
  6. SourceFile(std::string dir, std::string name);
  7. private:
  8. std::string dir_;
  9. std::string name_;
  10. std::vector<std::string> pkgs_;
  11. std::vector<std::string> cflags_;
  12. std::vector<std::string> ldflags_;
  13. };