-
Notifications
You must be signed in to change notification settings - Fork 23
/
config.yml
63 lines (53 loc) · 1.86 KB
/
config.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# A configuration file for the converter. A config file exist in the 'resources' directory.
# If an application is compiled to the 'jar', you may use an override config file, at the
# same level as the 'jar' exist
# Alternatively, you may use a command line options
#
# A path, where *.proto source files resides.
src_path: 'Infraworld/protos'
#
# A path, where generated UE C++ public classes should be placed.
dst_public_path: 'Infraworld/Plugins/GrpcClient/Source/GrpcClient/Public/'
#
# A path, where generated UE C++ private classes should be placed.
dst_private_path: 'Infraworld/Plugins/GrpcClient/Source/GrpcClient/Private/'
#
# Name of the module (Needed to compute API, like MYMODULE_API)
#
# NOTE: Left it blank if you don't want to use API.
# NOTE: If not left blank, it mustn't contain any spaces, this is checked in run-time.
module_name: 'InfraworldClientDemo'
#
# In case you're using precompiled headers - provide a valid relative or absolute path to the precompiled header.
# Or otherwise left it blank or don't use precompiled headers.
precompiled_header: 'InfraworldClientDemo.h'
#
# Name of the folder, where files generated by protoc should reside.
# This path is relative to the folder, you've added in project's either:
# * PublicIncludePaths
# * PrivateIncludePaths
wrappers_path: 'Wrappers'
#
# Company name will be used to declare category, where RPC methods will reside.
#
# NOTE: Mustn't contain any '|' symbols, because it is used as the directory separator.
company_name: 'Vizor'
#
# Override log level if you want to. May be ignored, then log4j2.xml will be used.
#
# Avaliable variants are:
# -off
# -fatal
# -error
# -warn
# -info
# -info
# -trace
# -all
#log_level: 'debug'
#
# 'yes' to force the converter to work in the single thread.
# 'no' allows the converter to work within ForkJoinPool
#
# NOTE: it is 'no' by default
no_fork: no