You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
project('try compile', 'c')
|
|
|
|
|
|
|
|
code = '''#include<stdio.h>
|
|
|
|
void func() { printf("Something.\n"); }
|
|
|
|
'''
|
|
|
|
|
|
|
|
breakcode = '''#include<nonexisting.h>
|
|
|
|
void func() { printf("This won't work.\n"); }
|
|
|
|
'''
|
|
|
|
|
|
|
|
compiler = meson.get_compiler('c')
|
|
|
|
if compiler.compiles(code, name : 'should succeed') == false
|
|
|
|
error('Compiler is fail.')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if compiler.compiles(files('valid.c'), name : 'should succeed') == false
|
|
|
|
error('Compiler is fail.')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if compiler.compiles(breakcode, name : 'should fail')
|
|
|
|
error('Compiler returned true on broken code.')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if compiler.compiles(files('invalid.c'), name : 'should fail')
|
|
|
|
error('Compiler returned true on broken code.')
|
|
|
|
endif
|