1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef MONO_BUILD_INFO_H
- #define MONO_BUILD_INFO_H
- #include "core/ustring.h"
- #include "core/vector.h"
- struct MonoBuildInfo {
- struct Hasher {
- static uint32_t hash(const MonoBuildInfo &p_key);
- };
- String solution;
- String configuration;
- Vector<String> custom_props;
- bool operator==(const MonoBuildInfo &p_b) const;
- String get_log_dirpath();
- MonoBuildInfo();
- MonoBuildInfo(const String &p_solution, const String &p_config);
- };
- #endif
|