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.
19 lines
387 B
19 lines
387 B
12 years ago
|
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) == false
|
||
|
error('Compiler is fail.')
|
||
|
endif
|
||
|
|
||
|
if compiler.compiles(breakcode)
|
||
|
error('Compiler returned true on broken code.')
|
||
|
endif
|