blob: 749ce3f317d0b6403c088e75be56432af02897a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file : build/bin/module -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// 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&);
}
}
#endif // BUILD_BIN_MODULE
|