From ef8c8444033bb0c1c1ae1b3ae4fd77dc09590233 Mon Sep 17 00:00:00 2001 From: Tau Date: Mon, 31 May 2021 12:54:14 -0400 Subject: [PATCH] Statically link default chuniio --- chunihook/meson.build | 2 +- chuniio/chuniio.def | 11 ----------- chuniio/meson.build | 3 +-- 3 files changed, 2 insertions(+), 14 deletions(-) delete mode 100644 chuniio/chuniio.def diff --git a/chunihook/meson.build b/chunihook/meson.build index 9fb6486..9279c38 100644 --- a/chunihook/meson.build +++ b/chunihook/meson.build @@ -13,7 +13,7 @@ shared_library( aimeio_lib, amex_lib, board_lib, - chuniio_dll, + chuniio_lib, hooklib_lib, jvs_lib, platform_lib, diff --git a/chuniio/chuniio.def b/chuniio/chuniio.def deleted file mode 100644 index f3ba8c6..0000000 --- a/chuniio/chuniio.def +++ /dev/null @@ -1,11 +0,0 @@ -LIBRARY chuniio - -EXPORTS - chuni_io_jvs_init - chuni_io_jvs_poll - chuni_io_jvs_read_coin_counter - chuni_io_jvs_set_coin_blocker - chuni_io_slider_init - chuni_io_slider_set_leds - chuni_io_slider_start - chuni_io_slider_stop diff --git a/chuniio/meson.build b/chuniio/meson.build index 2e15e4d..9e61229 100644 --- a/chuniio/meson.build +++ b/chuniio/meson.build @@ -1,9 +1,8 @@ -chuniio_dll = shared_library( +chuniio_lib = static_library( 'chuniio', name_prefix : '', include_directories : inc, implicit_include_directories : false, - vs_module_defs : 'chuniio.def', c_pch : '../precompiled.h', sources : [ 'chuniio.c',