Home | History | Annotate | Download | only in mesa3d

Lines Matching full:opts

77 def AddOptions(opts):
86 opts.Add(EnumOption('build', 'build type', 'debug',
88 opts.Add(BoolOption('verbose', 'verbose output', 'no'))
89 opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine,
91 opts.Add(EnumOption('platform', 'target platform', host_platform,
93 opts.Add(BoolOption('embedded', 'embedded build', 'no'))
94 opts.Add('toolchain', 'compiler toolchain', default_toolchain)
95 opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support', 'no'))
96 opts.Add(BoolOption('llvm', 'use LLVM', default_llvm))
97 opts.Add(BoolOption('openmp', 'EXPERIMENTAL: compile with openmp (swrast)', 'no'))
98 opts.Add(BoolOption('debug', 'DEPRECATED: debug build', 'yes'))
99 opts.Add(BoolOption('profile', 'DEPRECATED: profile build', 'no'))
100 opts.Add(BoolOption('quiet', 'DEPRECATED: profile build', 'yes'))
101 opts.Add(BoolOption('texture_float', 'enable floating-point textures and renderbuffers', 'no'))
103 opts.Add(EnumOption('MSVS_VERSION', 'MS Visual C++ version', None, allowed_values=('7.1', '8.0', '9.0')))