Skip to content
Snippets Groups Projects
Unverified Commit 89c3d93e authored by Guilherme Amadio's avatar Guilherme Amadio
Browse files

Fix tree/treeplayer/CMakeLists.txt

The header TProcessExecutor.hxx is from core/multiproc.
It was being removed before, so there was no problem if
didn't exist, but since the logic has been inverted to
add if needed, it created a problem.
parent 0a88e965
No related branches found
No related tags found
No related merge requests found
......@@ -3,17 +3,15 @@
# @author Pere Mato CERN, Danilo Piparo CERN
############################################################################
if(imt)
if(NOT MSVC)
list(APPEND TREEPLAYER_EXTRA_HEADERS
ROOT/TTreeProcessorMT.hxx
TMPWorkerTree.h
ROOT/TTreeProcessorMP.hxx
)
endif()
if(NOT MSVC)
if(imt)
list(APPEND TREEPLAYER_EXTRA_HEADERS
TMPWorkerTree.h
ROOT/TProcessExecutor.hxx
ROOT/TTreeProcessorMP.hxx
ROOT/TTreeProcessorMT.hxx
)
endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment