From e815af118562c68794efbd310c887acd8eae800c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 24 Jun 2015 13:53:28 +0200 Subject: First take on the cli module plus necessary infrastructure --- build/bin/target.cxx | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'build/bin') diff --git a/build/bin/target.cxx b/build/bin/target.cxx index 1d69063..66eadb7 100644 --- a/build/bin/target.cxx +++ b/build/bin/target.cxx @@ -28,6 +28,7 @@ namespace build "obja", &file::static_type, &obja_factory, + nullptr, &search_file }; @@ -49,6 +50,7 @@ namespace build "objso", &file::static_type, &objso_factory, + nullptr, &search_file }; @@ -74,6 +76,7 @@ namespace build "obj", &target::static_type, &obj_factory, + nullptr, &search_target }; @@ -83,6 +86,7 @@ namespace build "exe", &file::static_type, &target_factory, + nullptr, &search_file }; @@ -104,6 +108,7 @@ namespace build "liba", &file::static_type, &liba_factory, + nullptr, &search_file }; @@ -125,6 +130,7 @@ namespace build "libso", &file::static_type, &libso_factory, + nullptr, &search_file }; @@ -150,6 +156,7 @@ namespace build "lib", &target::static_type, &lib_factory, + nullptr, &search_target }; } -- cgit v1.1