-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDependencyLinkProperty.hpp
More file actions
35 lines (29 loc) · 971 Bytes
/
Copy pathDependencyLinkProperty.hpp
File metadata and controls
35 lines (29 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef RUNCPP2_DATA_DEPENDENCY_LINK_PROPERTY_HPP
#define RUNCPP2_DATA_DEPENDENCY_LINK_PROPERTY_HPP
#include "runcpp2/Data/ParseCommon.hpp"
#include "runcpp2/YamlLib.hpp"
#include <vector>
#include <unordered_map>
#include <string>
namespace runcpp2
{
namespace Data
{
struct ProfileLinkProperty
{
std::vector<std::string> SearchLibraryNames;
std::vector<std::string> SearchDirectories;
std::vector<std::string> ExcludeLibraryNames;
std::vector<std::string> AdditionalLinkOptions;
};
class DependencyLinkProperty
{
public:
std::unordered_map<ProfileName, ProfileLinkProperty> ProfileProperties;
bool ParseYAML_Node(ryml::ConstNodeRef& node);
std::string ToString(std::string indentation) const;
bool Equals(const DependencyLinkProperty& other) const;
};
}
}
#endif