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
233 B
8 lines
233 B
8 years ago
|
project('wintest', 'c')
|
||
|
|
||
|
# Test that we can produce an implib for an executable on Windows, and that it
|
||
|
# is installed along with the executable
|
||
|
|
||
|
prog = executable('prog', 'prog.c', install: true, implib: true)
|
||
|
test('wintest', prog)
|