Skip to content

Commit

Permalink
Raise cmake minimum version.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Apr 15, 2024
1 parent 867bb96 commit 84ee7ee
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build/emcc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.4.0)
cmake_minimum_required(VERSION 3.6.0)

set(HAVE_FLAG_SEARCH_PATHS_FIRST 0)

Expand Down
2 changes: 1 addition & 1 deletion build/http/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CMAKE httpd library
cmake_minimum_required(VERSION 3.4.0)
cmake_minimum_required(VERSION 3.6.0)
project(HTTPDFaust)
set (TARGET HTTPDFaust)

Expand Down
2 changes: 1 addition & 1 deletion build/interp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CMAKE faust interpreter
project(FaustMachine)
cmake_minimum_required(VERSION 3.4.0)
cmake_minimum_required(VERSION 3.6.0)

#######################################
# versions management
Expand Down
2 changes: 1 addition & 1 deletion build/osc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CMAKE oscpack
project(OSCFaust)
cmake_minimum_required(VERSION 3.4.0)
cmake_minimum_required(VERSION 3.6.0)

#######################################
# versions management
Expand Down
2 changes: 1 addition & 1 deletion build/wasmglue/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.4.0)
cmake_minimum_required(VERSION 3.6.0)

set(HAVE_FLAG_SEARCH_PATHS_FIRST 0)

Expand Down
4 changes: 2 additions & 2 deletions compiler/generator/wasm/bindings/adapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ string libFaustWasm::expandDSP(const string name, const string dsp_content, cons
string2StringsVector(args_aux, argsv);
size_t n = argsv.size();

// 'errmsg' is actually not used: the possible error is returned in 'faustexception::gJSExceptionMsg'
// 'error_msg' is actually not used: the possible error is returned in 'faustexception::gJSExceptionMsg'
string sha_key, error_msg;
const char** args = stringVector2argv(argsv);
string expanded = ::expandDSPFromString(name, dsp_content, n, args, sha_key, error_msg);
Expand All @@ -96,7 +96,7 @@ bool libFaustWasm::generateAuxFiles(const string name, const string dsp_content,
{
vector<string> argsv;
string2StringsVector(args_aux, argsv);
// 'errmsg' is actually not used: the possible error is returned in 'faustexception::gJSExceptionMsg'
// 'error_msg' is actually not used: the possible error is returned in 'faustexception::gJSExceptionMsg'
string error_msg;
const char** args = stringVector2argv(argsv);
size_t n = argsv.size();
Expand Down

0 comments on commit 84ee7ee

Please sign in to comment.