File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ option(QUARKS "Install plugins as quarks")
69
69
option (OSX_PACKAGE "Package dmg for Apple" )
70
70
option (IN_PLACE_BUILD "Build and install in cmake build folder" ON )
71
71
option (NOVA_SIMD "Build VBAP with nova-simd support." ON )
72
- option (CPP11 "Build with c++11." ON )
73
72
option (NATIVE "Optimize for this specific machine." OFF )
74
73
option (SYSTEM_STK "Use STK libraries from system" OFF )
75
74
option (HOA_UGENS "Build with HOAUGens (Higher-order Ambisonics)" ON )
@@ -119,12 +118,10 @@ if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_CLANG)
119
118
add_definitions (-march=native)
120
119
endif ()
121
120
122
- if (CPP11)
123
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11" )
124
- if (CMAKE_COMPILER_IS_CLANG)
125
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++" )
126
- endif ()
127
- endif ()
121
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17" )
122
+ if (CMAKE_COMPILER_IS_CLANG)
123
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++" )
124
+ endif ()
128
125
endif ()
129
126
if (MINGW)
130
127
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mstackrealign" )
Original file line number Diff line number Diff line change @@ -50,6 +50,8 @@ git clone --recursive https://github.com/supercollider/sc3-plugins.git
50
50
git clone --recursive https://github.com/supercollider/supercollider.git
51
51
```
52
52
53
+ Note, if you are building for an older version of supercollider you should checkout the sc3-plugins tag which matches the version of supercollider.
54
+
53
55
Be sure to use ` --recursive ` , or to initialize the submodules after cloning, otherwise you will not have files
54
56
that are necessary to build the project.
55
57
You can’t perform that action at this time.
0 commit comments