diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2020-08-21 17:30:05 +0200 |
---|---|---|
committer | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2020-08-21 17:30:05 +0200 |
commit | ff0a39377533365e128c3364395c6bfbae8d5b1a (patch) | |
tree | e079b3d9ff76209b17442ee5ca62d0ded83ce4ab /cmd/binapi-generator/main.go | |
parent | 8c3f04816a8fd23a5eabde1b36cb2471e06229bc (diff) |
Expose version info control flags
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Change-Id: Ida098149bdf23dccafb7b1f2ac2bb83f21f918c9
Diffstat (limited to 'cmd/binapi-generator/main.go')
-rw-r--r-- | cmd/binapi-generator/main.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cmd/binapi-generator/main.go b/cmd/binapi-generator/main.go index 732b4f3..3dc2c08 100644 --- a/cmd/binapi-generator/main.go +++ b/cmd/binapi-generator/main.go @@ -45,8 +45,10 @@ func main() { importPrefix = flag.String("import-prefix", "", "Define import path prefix to be used to import types.") generatorPlugins = flag.String("gen", "rpc", "List of generator plugins to run for files.") - printVersion = flag.Bool("version", false, "Prints version and exits.") - debugLog = flag.Bool("debug", false, "Enable verbose logging.") + printVersion = flag.Bool("version", false, "Prints version and exits.") + debugLog = flag.Bool("debug", false, "Enable verbose logging.") + noVersionInfo = flag.Bool("no-version-info", false, "Disable version info in generated files.") + noSourcePathInfo = flag.Bool("no-source-path-info", false, "Disable source path info in generated files.") ) flag.Parse() @@ -71,8 +73,10 @@ func main() { } opts := binapigen.Options{ - ImportPrefix: *importPrefix, - OutputDir: *theOutputDir, + ImportPrefix: *importPrefix, + OutputDir: *theOutputDir, + NoVersionInfo: *noVersionInfo, + NoSourcePathInfo: *noSourcePathInfo, } if opts.OutputDir == "binapi" { if wd, _ := os.Getwd(); filepath.Base(wd) == "binapi" { |