forked from microsoft/cppwinrt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.h
More file actions
37 lines (31 loc) · 950 Bytes
/
settings.h
File metadata and controls
37 lines (31 loc) · 950 Bytes
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
36
37
#pragma once
namespace cppwinrt
{
struct settings_type
{
std::set<std::string> input;
std::set<std::string> reference;
std::string output_folder;
bool base{};
bool license{};
std::string license_template;
bool brackets{};
bool verbose{};
bool component{};
std::string component_folder;
std::string component_name;
std::string component_pch;
bool component_prefix{};
bool component_overwrite{};
std::string component_lib;
bool component_opt{};
bool component_ignore_velocity{};
std::set<std::string> include;
std::set<std::string> exclude;
winmd::reader::filter projection_filter;
winmd::reader::filter component_filter;
bool fastabi{};
std::map<winmd::reader::TypeDef, winmd::reader::TypeDef> fastabi_cache;
};
extern settings_type settings;
}