Skip to content

Commit

Permalink
[CMake] Switch OpenMP On by default
Browse files Browse the repository at this point in the history
Fixes UCL#1554
  • Loading branch information
KrisThielemans committed Feb 7, 2025
1 parent 75f52f1 commit 5eee711
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions documentation/release_6.3.htm
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ <h3>Build system</h3>
<li>Enable more diagnostics in CMake when finding CERN's ROOT (we used to silence them)<br>
<a href=https://github.com/UCL/STIR/pull/1552>PR #1552</a>
</li>
<li>Use OpenMP by default</li>
</ul>

<h3>Known problems</h3>
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
option(STIR_MPI
"Compile with MPI" OFF)
option(STIR_OPENMP
"Compile with OpenMP" OFF)
"Compile with OpenMP" ON)

option(BUILD_TESTING
"Build test programs" ON)
Expand Down

0 comments on commit 5eee711

Please sign in to comment.