diff options
author | Roland Reichwein <mail@reichwein.it> | 2024-06-15 14:24:14 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2024-06-15 14:24:14 +0200 |
commit | ec955eb6726b31e26d17c34474619b60f3563194 (patch) | |
tree | 3ce74889185f0b2a3a9a13d67ccf9b3812479e83 /file.h | |
parent | d9e360bb95d4fced4974bb716f993c81626417cb (diff) |
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -6,7 +6,7 @@ extern const std::filesystem::path YMakefile; -bool is_buildable_by_extension(const std::filesystem::path& p); +bool is_buildable_by_name(const std::filesystem::path& p); bool is_compile_unit_source_by_extension(const std::filesystem::path& p); bool is_executable_target(const std::filesystem::path& p); @@ -14,6 +14,8 @@ bool is_dynamic_lib(const std::filesystem::path& p); bool is_dynamic_lib_link(const std::filesystem::path& p); bool is_static_lib(const std::filesystem::path& p); bool is_external_lib(const std::filesystem::path& p); +bool is_lib(const std::filesystem::path& p); +bool is_linkable(const std::filesystem::path& p); std::filesystem::path soname_shorter(const std::filesystem::path& p); std::filesystem::path soname_short(const std::filesystem::path& p); std::string dynamic_lib_name(const std::filesystem::path& p); |