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.
|
- #pragma once
-
- #include <libman/library.hpp>
- #include <libman/util.hpp>
-
- namespace lm {
-
- class package {
- public:
- std::string name;
- std::string namespace_;
- std::vector<std::string> requires_;
- std::vector<library> libraries;
- fs::path lmp_path;
-
- static package from_file(path_ref);
- };
-
- } // namespace lm
|