Skip to content

Commit

Permalink
Build static library by default
Browse files Browse the repository at this point in the history
  • Loading branch information
zyedidia committed Oct 22, 2024
1 parent 3d03d56 commit 5715e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ instr_data = custom_target('tables',
install: true,
install_dir: [get_option('includedir'), false])

libdisarm64 = library('disarm64', 'classify.c', 'decode.c', 'encode.c', 'format.c', instr_data, install: true)
libdisarm64 = static_library('disarm64', 'classify.c', 'decode.c', 'encode.c', 'format.c', instr_data, install: true)
disarm64 = declare_dependency(link_with: libdisarm64,
include_directories: include_directories('.'),
sources: instr_data)
Expand Down

0 comments on commit 5715e71

Please sign in to comment.