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.
8 lines
333 B
8 lines
333 B
8 years ago
|
project('wintest', 'c')
|
||
|
|
||
8 years ago
|
# 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
|
||
8 years ago
|
|
||
8 years ago
|
executable('prog', 'prog.c', install: true, implib: true)
|
||
7 years ago
|
executable('prog2', 'prog.c', install: true, implib: 'burble', install_dir: get_option('bindir'))
|