From ac87e3827b214c0ba1bd1c17a2d8a18026637d3f Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 26 Aug 2019 12:06:03 +0300 Subject: Move cxx build system module to separate library --- build2/cxx/target.cxx | 85 --------------------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 build2/cxx/target.cxx (limited to 'build2/cxx/target.cxx') diff --git a/build2/cxx/target.cxx b/build2/cxx/target.cxx deleted file mode 100644 index 45463f3..0000000 --- a/build2/cxx/target.cxx +++ /dev/null @@ -1,85 +0,0 @@ -// file : build2/cxx/target.cxx -*- C++ -*- -// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd -// license : MIT; see accompanying LICENSE file - -#include - -#include - -using namespace std; - -namespace build2 -{ - namespace cxx - { - extern const char hxx_ext_def[] = "hxx"; - const target_type hxx::static_type - { - "hxx", - &cc::static_type, - &target_factory, - nullptr, /* fixed_extension */ - &target_extension_var, - &target_pattern_var, - nullptr, - &file_search, - false - }; - - extern const char ixx_ext_def[] = "ixx"; - const target_type ixx::static_type - { - "ixx", - &cc::static_type, - &target_factory, - nullptr, /* fixed_extension */ - &target_extension_var, - &target_pattern_var, - nullptr, - &file_search, - false - }; - - extern const char txx_ext_def[] = "txx"; - const target_type txx::static_type - { - "txx", - &cc::static_type, - &target_factory, - nullptr, /* fixed_extension */ - &target_extension_var, - &target_pattern_var, - nullptr, - &file_search, - false - }; - - extern const char cxx_ext_def[] = "cxx"; - const target_type cxx::static_type - { - "cxx", - &cc::static_type, - &target_factory, - nullptr, /* fixed_extension */ - &target_extension_var, - &target_pattern_var, - nullptr, - &file_search, - false - }; - - extern const char mxx_ext_def[] = "mxx"; - const target_type mxx::static_type - { - "mxx", - &cc::static_type, - &target_factory, - nullptr, /* fixed_extension */ - &target_extension_var, - &target_pattern_var, - nullptr, - &file_search, - false - }; - } -} -- cgit v1.1