From 9fb791e9fad6c63fc1dac49f4d05ae63b8a3db9b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 5 Jan 2016 11:55:15 +0200 Subject: Rename build directory/namespace to build2 --- build2/cli/target.cxx | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 build2/cli/target.cxx (limited to 'build2/cli/target.cxx') diff --git a/build2/cli/target.cxx b/build2/cli/target.cxx new file mode 100644 index 0000000..ef69e88 --- /dev/null +++ b/build2/cli/target.cxx @@ -0,0 +1,77 @@ +// file : build2/cli/target.cxx -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#include + +#include + +using namespace std; +using namespace butl; + +namespace build2 +{ + namespace cli + { + // cli + // + constexpr const char cli_ext_var[] = "extension"; + constexpr const char cli_ext_def[] = "cli"; + + const target_type cli::static_type + { + "cli", + &file::static_type, + &target_factory, + &target_extension_var, + &search_file, + false + }; + + // cli.cxx + // + group_view cli_cxx:: + group_members (action_type) const + { + return h != nullptr + ? group_view {m, (i != nullptr ? 3U : 2U)} + : group_view {nullptr, 0}; + } + + timestamp cli_cxx:: + load_mtime () const + { + // The rule has been matched which means the members should + // be resolved and paths assigned. + // + return file_mtime (h->path ()); + } + + static target* + cli_cxx_factory (const target_type&, dir_path d, string n, const string* e) + { + tracer trace ("cli::cli_cxx_factory"); + + // Pre-enter (potential) members as targets. The main purpose + // of doing this is to avoid searching for existing files in + // src_base if the buildfile mentions some of them explicitly + // as prerequisites. + // + targets.insert (d, n, trace); + targets.insert (d, n, trace); + targets.insert (d, n, trace); + + return new cli_cxx (move (d), move (n), e); + } + + const target_type cli_cxx::static_type + { + "cli.cxx", + &mtime_target::static_type, + &cli_cxx_factory, + nullptr, + &search_target, + true // "See through" default iteration mode. + }; + } +} -- cgit v1.1