aboutsummaryrefslogtreecommitdiff
path: root/include/Linker.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2017-12-10 04:05:20 +0100
committerdec05eba <dec05eba@protonmail.com>2017-12-10 04:06:02 +0100
commit99570d3fa5abf548d4e8e5e479d82ee66898b602 (patch)
treed52ac6662d51baccde2983639de0ffda3acc9578 /include/Linker.hpp
parent1d3e221a7a20bfd03517e3ae1e35e4a309a69b6a (diff)
Add support for recursive global lib dependencies
Diffstat (limited to 'include/Linker.hpp')
-rw-r--r--include/Linker.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/Linker.hpp b/include/Linker.hpp
new file mode 100644
index 0000000..7ea7b48
--- /dev/null
+++ b/include/Linker.hpp
@@ -0,0 +1,11 @@
+#ifndef SIBS_LINKER_HPP
+#define SIBS_LINKER_HPP
+
+#include <functional>
+
+namespace sibs
+{
+ using LinkerFlagCallbackFunc = std::function<void(const std::string&)>;
+}
+
+#endif //SIBS_LINKER_HPP