blob: 2763d10fbe55ba1c880671ee1a0cb7ce6afc3918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// file : build/install/operation -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef BUILD_INSTALL_OPERATION
#define BUILD_INSTALL_OPERATION
#include <build/operation>
namespace build
{
namespace install
{
extern operation_info install;
}
}
#endif // BUILD_INSTALL_OPERATION
|