summaryrefslogtreecommitdiffstats
path: root/test cases/windows/8 find program/meson.build
blob: 565fb626d825291abe3a71ee6618d49b49896796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)