blob: 68d99496885fd1b805312ba6ba5c97834d6b4822 (
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
31
32
33
34
35
|
// file : build2/cc/types -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef BUILD2_CC_TYPES
#define BUILD2_CC_TYPES
#include <build2/types>
#include <build2/utility>
namespace build2
{
namespace cc
{
// Compiler language.
//
enum class lang {c, cxx};
inline ostream&
operator<< (ostream& os, lang l)
{
return os << (l == lang::c ? "C" : "C++");
}
// Compile/link output type (executable, static, or shared).
//
enum class otype {e, a, s};
// Library link order.
//
enum class lorder {a, s, a_s, s_a};
}
}
#endif // BUILD2_CC_TYPES
|