blob: 972b580ae7b5509963d31bfd7b215c2d1b62d82a (
plain)
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
|
#pragma once
#include <filesystem>
#include <string>
#include <vector>
extern const std::filesystem::path YMakefile;
bool is_buildable_by_extension(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);
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);
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);
// removes initial "./"
std::filesystem::path simplified_path(const std::filesystem::path& p);
// path of lib, i.e. parent
// e.g. libs/libabc.so.1.0.0 -> libs
// e.g. libabc.so -> .
std::filesystem::path lib_path(const std::filesystem::path& p);
std::string env_value(const std::string& key);
bool is_executable_command(const std::string& file);
std::string find_executable(const std::vector<std::string>& list);
|