aboutsummaryrefslogtreecommitdiff
path: root/include/Linker.hpp
blob: 90bebe20559886e2ba568c286cb989bd6f909a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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&)>;
}

#endif //SIBS_LINKER_HPP