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.

19 line
370B

  1. #pragma once
  2. #include <libman/library.hpp>
  3. #include <libman/util.hpp>
  4. namespace lm {
  5. class package {
  6. public:
  7. std::string name;
  8. std::string namespace_;
  9. std::vector<std::string> requires_;
  10. std::vector<library> libraries;
  11. fs::path lmp_path;
  12. static package from_file(path_ref);
  13. };
  14. } // namespace lm