Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/baseoq4/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if build_games and build_game_sp
install_dir: install_game_dir,
)
elif host_system == 'darwin'
shared_module(
shared_library(
game_sp_binary_name,
game_sources,
include_directories: game_include_dirs,
Expand Down Expand Up @@ -63,7 +63,7 @@ if build_games and build_game_mp
install_dir: install_game_dir,
)
elif host_system == 'darwin'
shared_module(
shared_library(
game_mp_binary_name,
game_sources,
include_directories: game_include_dirs,
Expand Down
2 changes: 2 additions & 0 deletions tools/tests/macos_metal_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,8 @@ def validate_meson_contract() -> None:
require(meson, "'macOS OpenAL provider': macos_openal_provider", "Meson summary")

require(baseoq4_meson, "elif host_system == 'darwin'", "macOS game module source branch")
require(baseoq4_meson, "shared_library(\n game_sp_binary_name,", "macOS SP game module dylib target type")
require(baseoq4_meson, "shared_library(\n game_mp_binary_name,", "macOS MP game module dylib target type")
require(baseoq4_meson, "name_suffix: 'dylib'", "macOS game module dylib suffix")
require(baseoq4_meson, "-Wl,-install_name,@loader_path/", "macOS game module install name")

Expand Down
Loading