Skip to content

Commit

Permalink
[CMAKE] default DISABLE_MATLAB to ON
Browse files Browse the repository at this point in the history
SIRF Matlab support is out-of-date and could generate conflicts with Python shared libraries.
  • Loading branch information
KrisThielemans committed Jul 21, 2023
1 parent 273e491 commit 8abfb49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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),
Expand Down
2 changes: 1 addition & 1 deletion SuperBuild.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 8abfb49

Please sign in to comment.