The Meson Build System
http://mesonbuild.com/
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.
27 lines
846 B
27 lines
846 B
project('try compile', 'c', 'cpp') |
|
|
|
code = '''#include<stdio.h> |
|
void func() { printf("Something.\n"); } |
|
''' |
|
|
|
breakcode = '''#include<nonexisting.h> |
|
void func() { printf("This won't work.\n"); } |
|
''' |
|
|
|
foreach compiler : [meson.get_compiler('c'), meson.get_compiler('cpp')] |
|
if compiler.compiles(code, name : 'should succeed') == false |
|
error('Compiler ' + compiler.get_id() + ' is fail.') |
|
endif |
|
|
|
if compiler.compiles(files('valid.c'), name : 'should succeed') == false |
|
error('Compiler ' + compiler.get_id() + ' is fail.') |
|
endif |
|
|
|
if compiler.compiles(breakcode, name : 'should fail') |
|
error('Compiler ' + compiler.get_id() + ' returned true on broken code.') |
|
endif |
|
|
|
if compiler.compiles(files('invalid.c'), name : 'should fail') |
|
error('Compiler ' + compiler.get_id() + ' returned true on broken code.') |
|
endif |
|
endforeach
|
|
|