From 2933b0f106c1284759f5b944a1c7fae9b3f8040d Mon Sep 17 00:00:00 2001 From: Alexis Engelke Date: Sun, 16 Jun 2019 09:44:12 +0200 Subject: [PATCH] Rename library to libfadec --- meson.build | 10 +++++----- tests/meson.build | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index ae5e8cf..0fa1609 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libx86decode', ['c'], default_options: ['warning_level=3', 'c_std=c99']) +project('fadec', ['c'], default_options: ['warning_level=3', 'c_std=c99']) python3 = find_program('python3') @@ -58,9 +58,9 @@ instr_data = custom_target('tables', input: files('parseinstrs.py', 'instrs.txt'), output: ['decode-table.inc']) -libdecode = static_library('x86decode', 'decode.c', 'format.c', instr_data) -libx86decode = declare_dependency(link_with: libdecode, - include_directories: include_directories('.'), - sources: instr_data) +libfadec = static_library('fadec', 'decode.c', 'format.c', instr_data) +fadec = declare_dependency(link_with: libfadec, + include_directories: include_directories('.'), + sources: instr_data) subdir('tests') diff --git a/tests/meson.build b/tests/meson.build index dce27e7..40ed10d 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -1,6 +1,6 @@ test_driver = executable('test_driver', 'driver.c', - dependencies: libx86decode, + dependencies: fadec, c_args: ['-D_GNU_SOURCE']) test_args = [files('test.py'), test_driver] if decode_32