From 8abfb49a0033b8efd95324d8a5bbdc1613e330c5 Mon Sep 17 00:00:00 2001 From: Kris Thielemans Date: Fri, 21 Jul 2023 09:30:56 +0100 Subject: [PATCH] [CMAKE] default DISABLE_MATLAB to ON SIRF Matlab support is out-of-date and could generate conflicts with Python shared libraries. --- CHANGES.md | 4 ++++ SuperBuild.cmake | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index ef9c8d48..8d583dfe 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # ChangeLog +* CMake/building: + - default `DISABLE_MATLAB` to `ON` as SIRF Matlab support is out-of-date and could + generate conflicts with Python shared libraries. + ## vx.x.x - docker image updates - introduce `REMOVE_BUILD_FILES` variable. If set to 1 (which is the default), diff --git a/SuperBuild.cmake b/SuperBuild.cmake index 96a93a7e..f4eba185 100644 --- a/SuperBuild.cmake +++ b/SuperBuild.cmake @@ -147,7 +147,7 @@ else() endif() #### MATLAB support -option(DISABLE_Matlab "Disable building MATLAB support" OFF) +option(DISABLE_Matlab "Disable building MATLAB support" ON) if (DISABLE_Matlab) message(STATUS "Matlab support disabled") else()