blob: 0a38ec13e22cb1de3ba5231c4b93aebbb7e1da8c (
plain)
1
2
3
4
5
6
7
|
project('wintest', 'c')
# Test that we can produce an implib for an executable on Windows, and that it's
# name can be set, and that it is installed along with the executable
executable('prog', 'prog.c', install: true, implib: true)
executable('prog2', 'prog.c', install: true, implib: 'burble', install_dir: get_option('bindir'))
|