semver is implied.
2021-01-30
ENDS_WITH(str, postfix) function that checks if str ends with postfix.IS_DIR(path) function that checks if pathis a directory.RM(path) function that removes the specified path. It does not care if the path is file or directory, it just removes everything recursive every time.2021-01-27
INFO(fmt, ...), WARN(fmt, ...), ERRO(fmt, ...).nobuild__ (double underscore) are private to the library and should not be relied upon. They can be changed in any release without a warning.All the deprecated functions and macros will be removed in the next major release.
remove_ext(path) is deprecated. Use NOEXT(path) instead.CONCAT_SEP(sep, ...) is deprecated. Use JOIN(sep, ...) instead.concat_sep_impl(sep, ...) is deprecated. Use JOIN(sep, ...) instead.2021-01-27