Skip to content

Commit

Permalink
Merge pull request #1206 from KrisThielemans/DISABLE_MATLAB_ON
Browse files Browse the repository at this point in the history
[CMAKE] default DISABLE_MATLAB to ON
  • Loading branch information
KrisThielemans authored Sep 27, 2023
2 parents 60bda8a + 796e18d commit d395634
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ChangeLog

## xx.xx.xx

* CMake/building:
- default `DISABLE_MATLAB` to `ON` as our Matlab support is out-of-date and could
generate conflicts with Python shared libraries.

## v3.5.0

* GitHub Action: remove temporarily the Ubuntu 20.04 build, #1178
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ else(DISABLE_PYTHON)
endif(DISABLE_PYTHON)


option(DISABLE_Matlab "Disable building SIRF matlab support" OFF)
option(DISABLE_Matlab "Disable building SIRF matlab support" ON)
if (DISABLE_Matlab)
message(STATUS "Matlab support disabled")
else(DISABLE_Matlab)
Expand Down

0 comments on commit d395634

Please sign in to comment.