aboutsummaryrefslogtreecommitdiff
path: root/build/bin
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-24 13:53:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-24 13:53:28 +0200
commite815af118562c68794efbd310c887acd8eae800c (patch)
treecedd8745cce259693c038c309d663a682c982e98 /build/bin
parent4f52c4ed65883dacef32587cf066fbb1182c6628 (diff)
First take on the cli module plus necessary infrastructure
Diffstat (limited to 'build/bin')
-rw-r--r--build/bin/target.cxx7
1 files changed, 7 insertions, 0 deletions
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<exe>,
+ 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
};
}