blob: 89ea9fe08ee78f0d8ca707c5ada7151cee558cb5 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// file : build/bin/module.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/bin/module>
#include <build/scope>
#include <build/variable>
#include <build/diagnostics>
#include <build/config/utility>
using namespace std;
namespace build
{
namespace bin
{
void
init (scope& root, scope& base, const location& l)
{
//@@ TODO: avoid multiple inits (generally, for modules).
//
tracer trace ("bin::init");
//@@ Should it be this way?
//
if (&root != &base)
fail (l) << "bin module must be initialized in project root scope";
//@@ TODO: need to register target types, rules here instead of main().
const dir_path& out_root (root.path ());
level4 ([&]{trace << "for " << out_root;});
// Configure.
//
}
void
init_lib (const dir_path& d)
{
scope* root (scopes.find (d).root_scope ());
if (root == nullptr)
return;
// config.bin.lib
//
{
auto v (root->vars.assign ("bin.lib"));
if (!v)
v = config::required (*root, "config.bin.lib", "shared").first;
}
}
}
}
|