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
435 B

project('objfw build tests', 'objcpp')
objfw_dep = dependency('objfw', required: false)
objfwtest_dep = dependency('objfw', modules: ['ObjFWTest'], required: false)
if not objfw_dep.found() or not objfwtest_dep.found()
error('MESON_SKIP_TEST: Need objfw dependency')
endif
executable('TestApplication', 'TestApplication.mm',
dependencies: [objfw_dep])
executable('SimpleTest', 'SimpleTest.mm',
dependencies: [objfwtest_dep])