From 0e0aecbb5da837d9f6e87330d79c2a6fb92bfa45 Mon Sep 17 00:00:00 2001 From: Sudara Date: Tue, 26 Dec 2023 22:13:15 +0100 Subject: [PATCH] Include PamplejuceMacOS before project call. Resolves #67 --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0739a88..822faae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,10 +6,13 @@ cmake_minimum_required(VERSION 3.24.1) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") include (PamplejuceVersion) +# Configures universal binaries and decides which version of macOS to support +include(PamplejuceMacOS) + # Change me! -# This is the internal name of the project and the name of JUCE's shared code "target" -# Note: This cannot have spaces (it may be 2023, but you can't have it all!) -# Worry not, JUCE's PRODUCT_NAME can have spaces (and is DAWs display) +# This is the internal name of the project and the name of JUCE's shared code target +# Note: This cannot have spaces (it may be 2024, but you can't have it all!) +# Worry not, JUCE's PRODUCT_NAME can have spaces (and is what DAWs display) set(PROJECT_NAME "Pamplejuce") # Worry not, JUCE's PRODUCT_NAME can have spaces (and is what DAWs will display) @@ -33,9 +36,6 @@ set(FORMATS Standalone AU VST3 AUv3) # For simplicity, the name of the CMake project is also the name of the target project(${PROJECT_NAME} VERSION ${CURRENT_VERSION}) -# Configures universal binaries in CI -include(PamplejuceMacOS) - # Couple tweaks that IMO should be JUCE defaults include(JUCEDefaults)