Skip to content
Snippets Groups Projects
Commit ed19c94d authored by Vassil Vassilev's avatar Vassil Vassilev Committed by Axel Naumann
Browse files

[cxxmodules][cmake] Switch off the pch option when building with runtime_cxxmodules=On.

parent 548b01ab
No related branches found
No related tags found
No related merge requests found
...@@ -188,6 +188,10 @@ option(roottest "Include roottest, if roottest exists in root or if it is a sibl ...@@ -188,6 +188,10 @@ option(roottest "Include roottest, if roottest exists in root or if it is a sibl
option(rootbench "Include rootbench, if rootbench exists in root or if it is a sibling directory." OFF) option(rootbench "Include rootbench, if rootbench exists in root or if it is a sibling directory." OFF)
option(clingtest "Include cling tests. NOTE that this makes llvm/clang symbols visible in libCling." OFF) option(clingtest "Include cling tests. NOTE that this makes llvm/clang symbols visible in libCling." OFF)
if (runtime_cxxmodules)
set(pch_defvalue OFF)
endif(runtime_cxxmodules)
#--- Compression algorithms in ROOT------------------------------------------------------------- #--- Compression algorithms in ROOT-------------------------------------------------------------
if(NOT compression_default MATCHES "zlib|lz4|lzma") if(NOT compression_default MATCHES "zlib|lz4|lzma")
message(STATUS "Not supported compression algorithm, ROOT compression algorithms are zlib, lzma and lz4. message(STATUS "Not supported compression algorithm, ROOT compression algorithms are zlib, lzma and lz4.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment