compile: migrate to cmake

ci: migrate to MESA ci template
This commit is contained in:
zhuzhenjun
2023-10-12 10:30:55 +08:00
parent b7ee724244
commit 7e1849233b
29 changed files with 1849 additions and 67410 deletions

View File

@@ -197,10 +197,10 @@ struct osfp_db {
enum osfp_os_class_id osfp_os_class_name_to_id(char *name);
extern const char *os_class_name[OSFP_OS_CLASS_MAX];
extern const char *osfp_os_class_name[OSFP_OS_CLASS_MAX];
static inline const char *osfp_os_class_id_to_name(enum osfp_os_class_id os_class)
{
return os_class_name[os_class];
return osfp_os_class_name[os_class];
}
#endif