Lines Matching full:build
53 # TODO: Intermediate files should be in the build folders, not alongside
70 '''Given the build options name, return the build directory name.
77 '''Given the build options name, return the build directory name.
79 Returns absolute path to the build directory.'''
85 '''Build all tests for the specified options name.'''
110 subprocess.check_call(['cmake', '--build', build_dir,
159 There are two types of LVGL tests: "build", and "test". The build-only
161 compiles and links (with various build options). There are also a set of
165 description='Build and/or run LVGL tests.', epilog=epilog)
166 parser.add_argument('--build-options', nargs=1,
167 help='''the build option name to build or run. When
168 omitted all build configurations are used.
171 help='clean existing build artifacts before operation.')
174 parser.add_argument('actions', nargs='*', choices=['build', 'test'],
175 help='build: compile build tests, test: compile/run executable tests.')
182 if 'build' in args.actions:
192 print('Invalid build option "%s"' % opt, file=sys.stderr)