Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 72ba750

Browse files
committed
use find_library on macos and fix find_library on linux
1 parent 4d0078f commit 72ba750

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

external/lib/linux/x86_64/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ if get_option('install_fmod')
44
install_data(fmod_so, install_dir:get_option('fmod_dir'), install_mode:'rwxr-xr-x')
55
endif
66

7-
fmod = compiler.find_library('libfmod', dirs: meson.current_source_dir())
7+
fmod = compiler.find_library('fmod', dirs: meson.current_source_dir())
88

99
deps += fmod

external/lib/macos/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fmod_so = files('libfmod.dylib')
22

3-
external_objects += fmod_so
3+
fmod = compiler.find_library('fmod', dirs:meson.current_source_dir())

0 commit comments

Comments
 (0)