Skip to content

Commit b3a1952

Browse files
committed
Added definition of MacOS dependencies in build scripts
1 parent bf4a8be commit b3a1952

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

CHANGELOG

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*******************************************************************************
44

55
=== 1.0.29 ===
6-
6+
* Added definition of MacOS dependencies in build scripts.
77

88
=== 1.0.28 ===
99
* The DSP library now builds for Apple M1 chips and above on MacOS.

dependencies.mk

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
2-
# Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3-
# (C) 2020 Vladimir Sadovnikov <[email protected]>
2+
# Copyright (C) 2025 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
# (C) 2025 Vladimir Sadovnikov <[email protected]>
44
#
55
# This file is part of lsp-dsp-lib
66
#
@@ -60,14 +60,27 @@ ifeq ($(PLATFORM),Windows)
6060
TEST_DEPENDENCIES += $(WINDOWS_TEST_DEPENDENCIES)
6161
endif
6262

63+
#------------------------------------------------------------------------------
64+
# MacOS dependencies
65+
MACOS_DEPENDENCIES =
66+
67+
MACOS_TEST_DEPENDENCIES =
68+
69+
ifeq ($(PLATFORM),MacOS)
70+
DEPENDENCIES += $(MACOS_DEPENDENCIES)
71+
TEST_DEPENDENCIES += $(MACOS_TEST_DEPENDENCIES)
72+
endif
73+
6374
#------------------------------------------------------------------------------
6475
# Overall system dependencies
6576
ALL_DEPENDENCIES = \
6677
$(DEPENDENCIES) \
6778
$(LINUX_DEPENDENCIES) \
6879
$(BSD_DEPENDENCIES) \
6980
$(WINDOWS_DEPENDENCIES) \
81+
$(MACOS_DEPENDENCIES) \
7082
$(TEST_DEPENDENCIES) \
7183
$(LINUX_TEST_DEPENDENCIES) \
7284
$(BSD_TEST_DEPENDENCIES) \
73-
$(WINDOWS_TEST_DEPENDENCIES)
85+
$(WINDOWS_TEST_DEPENDENCIES) \
86+
$(MACOS_TESTDEPENDENCIES)

0 commit comments

Comments
 (0)