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.
7 lines
333 B
7 lines
333 B
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'))
|
|
|