aboutsummaryrefslogtreecommitdiff
path: root/include/Linker.hpp
blob: acf31e4696c8640496ee03cffcb9331c2ddbc0e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SIBS_LINKER_HPP
#define SIBS_LINKER_HPP

#include <functional>

namespace sibs
{
    using LinkerFlagCallbackFunc = std::function<void(const std::string&)>;
    using GlobalIncludeDirCallbackFunc = std::function<void(const std::string&)>;
    using CflagsCallbackFunc = std::function<void(const std::string&)>;
}

#endif //SIBS_LINKER_HPP