@@ -28,15 +28,14 @@ A target specification may have optional parameters, the names and values of whi
28
28
- [ ** build-type** ] ( #build-type ) : One of Release (the default), Debug, RelWithDebInfo and MinSizeRel.
29
29
- [ ** cargo-dependencies** ] ( #cargo-dependencies ) : (Rust only) list of dependencies to include in the generated Cargo.toml file.
30
30
- [ ** cargo-features** ] ( #cargo-features ) : (Rust only) List of string names of features to include.
31
- - [ ** cmake** ] ( #cmake ) : Whether to use cmake for building.
32
31
- [ ** cmake-include** ] ( #cmake ) : List of paths to cmake files to guide compilation.
33
32
- [ ** compiler** ] ( #compiler ) : A string giving the name of the target language compiler to use.
33
+ - [ ** compiler-flags** ] ( #compiler-flags ) : An arrays of strings giving options to be passed to the target compiler.
34
34
- [ ** docker** ] ( #docker ) : A boolean to generate a Dockerfile.
35
35
- [ ** external-runtime-path** ] ( #external-runtime-path ) : Specify a pre-compiled external runtime library located to link to instead of the default.
36
36
- [ ** export-dependency-graph** ] ( #export-dependency-graph ) : To export the reaction dependency graph as a dot graph (for debugging).
37
37
- [ ** fast** ] ( #fast ) : A boolean specifying to execute as fast as possible without waiting for physical time to match logical time.
38
38
- [ ** files** ] ( #files ) : An array of paths to files or directories to be copied to the directory that contains the generated sources.
39
- - [ ** flags** ] ( #flags ) : An arrays of strings giving options to be passed to the target compiler.
40
39
- [ ** logging** ] ( #logging ) : An indicator of how much information to print when executing the program.
41
40
- [ ** no-compile** ] ( #no-compile ) : If true, then do not invoke a target language compiler. Just generate code.
42
41
- [ ** no-runtime-validation** ] ( #no-runtime-validation ) : If true, disable runtime validation.
57
56
auth: <true or false>
58
57
build: <string>,
59
58
build-type: <Release, Debug, RelWithDebInfo, or MinSizeRel>,
60
- cmake: <true or false>,
61
59
cmake-include: <string or list of strings>,
62
60
compiler: <string>,
61
+ compiler-flags: <string or list of strings>,
63
62
docker: <true or false>,
64
63
fast: <true or false>,
65
64
files: <string or list of strings>,
66
- flags: <string or list of strings>,
67
65
logging: <error, warning, info, log, debug>,
68
66
no-compile: <true or false>,
69
67
protobufs: <string or list of strings>,
75
73
cpp = {
76
74
` target Cpp {
77
75
build-type: <Release, Debug, RelWithDebInfo, or MinSizeRel>,
76
+ compiler: <string>,
78
77
cmake-include: <string or list of strings>,
79
78
external-runtime-path: <string>,
80
79
export-dependency-graph <true or false>,
0 commit comments