File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 3
3
*******************************************************************************
4
4
5
5
=== 1.0.29 ===
6
-
6
+ * Added definition of MacOS dependencies in build scripts.
7
7
8
8
=== 1.0.28 ===
9
9
* The DSP library now builds for Apple M1 chips and above on MacOS.
Original file line number Diff line number Diff line change 1
1
#
2
- # Copyright (C) 2020 Linux Studio Plugins Project <https://lsp-plug.in/>
3
- # (C) 2020 Vladimir Sadovnikov <sadko4u@gmail.com>
2
+ # Copyright (C) 2025 Linux Studio Plugins Project <https://lsp-plug.in/>
3
+ # (C) 2025 Vladimir Sadovnikov <sadko4u@gmail.com>
4
4
#
5
5
# This file is part of lsp-dsp-lib
6
6
#
@@ -60,14 +60,27 @@ ifeq ($(PLATFORM),Windows)
60
60
TEST_DEPENDENCIES += $(WINDOWS_TEST_DEPENDENCIES )
61
61
endif
62
62
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
+
63
74
# ------------------------------------------------------------------------------
64
75
# Overall system dependencies
65
76
ALL_DEPENDENCIES = \
66
77
$(DEPENDENCIES ) \
67
78
$(LINUX_DEPENDENCIES ) \
68
79
$(BSD_DEPENDENCIES ) \
69
80
$(WINDOWS_DEPENDENCIES ) \
81
+ $(MACOS_DEPENDENCIES ) \
70
82
$(TEST_DEPENDENCIES ) \
71
83
$(LINUX_TEST_DEPENDENCIES ) \
72
84
$(BSD_TEST_DEPENDENCIES ) \
73
- $(WINDOWS_TEST_DEPENDENCIES )
85
+ $(WINDOWS_TEST_DEPENDENCIES ) \
86
+ $(MACOS_TESTDEPENDENCIES )
You can’t perform that action at this time.
0 commit comments