Files
RedBear-OS/local/recipes/dev/meson/source/test cases/windows/11 exe implib/meson.build
T

8 lines
333 B
Meson

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'))