Example #1
0
    def get_options(self):
        options = super().get_options()

        options.append(sipbuild.Option("QT", option_type=list))
        options.append(sipbuild.Option("PCH", option_type=list))

        return options
Example #2
0
    def get_options(self):
        options = super().get_options()

        options.append(
            sipbuild.Option("qmake",
                            metavar="<FILE>",
                            help="Specify the qmake executable"))
        options.append(
            sipbuild.Option("clang",
                            option_type=bool,
                            help="Use clang to compile the project"))

        options.append(
            sipbuild.Option("libcxx",
                            option_type=bool,
                            help="Link libc++ when --clang specified"))
        return options
Example #3
0
    def get_options(self):
        options = super().get_options()

        options.append(
            sipbuild.Option("qmake",
                            metavar="<FILE>",
                            help="Specify the qmake executable"))

        return options