blob: 25858f066b9c1250cc8b448db4a07a1d3c007b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file : load/options-types.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef LOAD_OPTIONS_TYPES_HXX
#define LOAD_OPTIONS_TYPES_HXX
#include <libbrep/types.hxx>
namespace brep
{
// Ignore unresolved conditional dependencies.
//
enum class ignore_unresolved_conditional_dependencies
{
all, // For all packages.
tests // Only for external tests, examples, and benchmarks packages.
};
}
#endif // LOAD_OPTIONS_TYPES_HXX
|