blob: d8b014923e21b93bdea7574e0d9b0eb1690fd911 (
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
29
30
31
32
33
34
35
36
37
|
// 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 obj::static_type
{
typeid (obj),
"obj",
&file::static_type,
&target_factory<obj>,
file::static_type.search
};
const target_type exe::static_type
{
typeid (exe),
"exe",
&file::static_type,
&target_factory<exe>,
file::static_type.search
};
const target_type lib::static_type
{
typeid (lib),
"lib",
&file::static_type,
&target_factory<lib>,
file::static_type.search
};
}
|