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.
12 lines
357 B
12 lines
357 B
project('find program', 'c') |
|
|
|
# Test that we can find native windows executables |
|
find_program('cmd') |
|
find_program('cmd.exe') |
|
|
|
# Test that a script file with an extension can be found |
|
ext = find_program('test-script-ext.py') |
|
test('ext', ext) |
|
# Test that a script file without an extension can be found |
|
prog = find_program('test-script') |
|
test('script', prog)
|
|
|