blob: 61ecb72b758052df7ec650917809935ebfe8d119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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>};
const target_type obj::static_type {
typeid (obj), "obj", &file::static_type, &target_factory<obj>};
}
|