blob: f2d95023d712f20c083e941da91616b02d6e1c16 (
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
|
// file : build/bin/module -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_BIN_MODULE
#define BUILD_BIN_MODULE
#include <build/path>
#include <build/module>
namespace build
{
namespace bin
{
void
init (scope&, scope&, const location&);
// Init the 'lib' part of the module because a lib{} target
// has been created in the specified directory.
//
void
init_lib (const dir_path&);
}
}
#endif // BUILD_BIN_MODULE
|