Skip to content

Commit

Permalink
Upgraded to JUCE 7.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
cvde committed Aug 25, 2023
1 parent 391bbfd commit 7177146
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.15)
cmake_minimum_required(VERSION 3.22) # JUCE 7.0.7 requires CMake 3.22

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
Expand All @@ -10,7 +10,7 @@ if(NOT CMAKE_BUILD_TYPE)
endif()

set(PROJECT_NAME "RoomReverb")
set(PROJECT_VERSION "1.0.0")
set(PROJECT_VERSION "1.1.0")

project(${PROJECT_NAME} VERSION ${PROJECT_VERSION})

Expand Down Expand Up @@ -53,10 +53,7 @@ juce_add_plugin(${PROJECT_NAME}
)

# clap format
if(CMAKE_VERSION VERSION_LESS 3.21.0) # clap-juce-extensions requires CMake 3.21
message(WARNING "Skipped CLAP build. Building CLAP requires CMake 3.21.")
elseif(CMAKE_SYSTEM_NAME STREQUAL "iOS") # no clap builds for iOS
else()
if(NOT CMAKE_SYSTEM_NAME STREQUAL "iOS")
add_subdirectory(Libs/clap-juce-extensions EXCLUDE_FROM_ALL)
clap_juce_extensions_plugin(
TARGET ${PROJECT_NAME}
Expand Down
2 changes: 1 addition & 1 deletion Libs/JUCE
Submodule JUCE updated 920 files

0 comments on commit 7177146

Please sign in to comment.