blob: 61305788009ec3c54e15a4c6222a2875b6a1749d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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
{
using type_info = target::type_info;
const type_info exe::ti_ {typeid (exe), "exe", &file::ti_};
const type_info obj::ti_ {typeid (obj), "obj", &file::ti_};
}
|