Browse Source

Fix build on old macOS

tags/v2.3.0-RC1
falkTX 3 years ago
parent
commit
f70ad43965
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 13 additions and 0 deletions
  1. +11
    -0
      Makefile
  2. +2
    -0
      source/Makefile.mk

+ 11
- 0
Makefile View File

@@ -822,7 +822,18 @@ uninstall:

# ----------------------------------------------------------------------------------------------------------------------------

ifeq ($(MACOS),true)
ifneq ($(MACOS_OLD),true)
HAVE_DIST = true
endif
endif

ifeq ($(HAVE_DIST),true)
include Makefile.dist.mk
else
dist:
endif

include Makefile.print.mk

# ---------------------------------------------------------------------------------------------------------------------


+ 2
- 0
source/Makefile.mk View File

@@ -425,6 +425,7 @@ ifeq ($(HAVE_QT5),true)
HAVE_THEME = true
else
ifeq ($(MACOS),true)
ifneq ($(MACOS_OLD),true)
ifeq ($(HAVE_PYQT),true)
HAVE_THEME = true
MOC_QT5 ?= moc
@@ -433,6 +434,7 @@ UIC_QT5 ?= uic
endif
endif
endif
endif

# ---------------------------------------------------------------------------------------------------------------------
# Set USING_JUCE


Loading…
Cancel
Save