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
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
def get_options(self): options = super().get_options() options.append( sipbuild.Option("qmake", metavar="<FILE>", help="Specify the qmake executable")) return options