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.
14 lines
291 B
14 lines
291 B
7 years ago
|
|
||
|
project('subproj with includedir', 'c')
|
||
|
|
||
|
|
||
|
|
||
|
compile_check = '''
|
||
|
#include "incfile.h"
|
||
|
'''
|
||
|
|
||
|
if not meson.get_compiler('c').compiles(compile_check, name : 'include in subproj',
|
||
|
include_directories: include_directories('include'))
|
||
|
error('failed')
|
||
|
endif
|