blob: c004a0db4a653c1df4151129e35d49fd4ffd605b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// file : build/config/operation.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/config/operation>
using namespace std;
namespace build
{
namespace config
{
meta_operation_info configure {"configure"};
meta_operation_info disfigure {"disfigure"};
}
}
|