#ifndef SIBS_LINKER_HPP #define SIBS_LINKER_HPP #include #include namespace sibs { using LinkerFlagCallbackFunc = std::function; using GlobalIncludeDirCallbackFunc = std::function; using CflagsCallbackFunc = std::function; bool is_gold_linker_installed(); bool is_lld_linker_installed(); bool is_mold_linker_installed(); } #endif //SIBS_LINKER_HPP