blob: f0846bedc825c4918b651413b8bb4ee42374632e (
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
|
// file : mod/build.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef MOD_BUILD_HXX
#define MOD_BUILD_HXX
#include <libbrep/types.hxx>
#include <libbrep/utility.hxx>
#include <libbrep/build.hxx>
// Various package build-related utilities.
//
namespace brep
{
// Return the package build log url. By default the url is to the operations
// combined log.
//
string
build_log_url (const string& host, const dir_path& root,
const build&,
const string* operation = nullptr);
// Return the package build forced rebuild url.
//
string
build_force_url (const string& host, const dir_path& root, const build&);
}
#endif // MOD_BUILD_HXX
|