Skip to content

Commit

Permalink
cmake: use c++ 17
Browse files Browse the repository at this point in the history
JUCE requires c++ 17 anyway
  • Loading branch information
xunil-cloud committed Jan 11, 2025
1 parent b4c33ae commit 844cae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cmake_minimum_required(VERSION 3.15)
# directories, and the current project version. This is a standard CMake command.

project(CloudReverb VERSION 0.2)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
Expand Down

0 comments on commit 844cae3

Please sign in to comment.