blob: b407fc65c345f0a34c7c793ea5208b1147ded656 (
plain)
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
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only
package cmd
import (
"os"
"qtcli/util"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
var verbose bool
var rootCmd = &cobra.Command{
Use: "qtcli",
Short: util.Msg("A CLI for creating Qt project and files"),
Version: "0.1",
PersistentPreRun: func(cmd *cobra.Command, args []string) {
if verbose {
logrus.SetLevel(logrus.DebugLevel)
}
},
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
},
}
func Execute() {
err := rootCmd.Execute()
if err != nil {
os.Exit(1)
}
}
func init() {
rootCmd.PersistentFlags().BoolVarP(
&verbose, "verbose", "v", false, util.Msg("Enable verbose output"))
}
|