blob: 8d58e6602d4de7b65d4849ce0085e3975e1a7181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// file : build/native.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/native>
using namespace std;
namespace build
{
const target_type exe::static_type
{
typeid (exe),
"exe",
&file::static_type,
&target_factory<exe>,
file::static_type.search
};
const target_type obj::static_type
{
typeid (obj),
"obj",
&file::static_type,
&target_factory<obj>,
file::static_type.search
};
}
|