Revision 8f2e2526c0068adc7bd4dc62cdc75faf4070110f authored by Guilherme Amadio on 16 May 2017, 09:12:45 UTC, committed by Guilherme Amadio on 16 May 2017, 16:20:31 UTC
After a bug in TFileMerger was fixed by Philippe Canal with commit
f8e55788e412b8d911535ad93a3ae40e8d40b748, it is possible to create a
normal TFileMerger class in TBufferMerger::WriteOutput() and let it
destruct the merged files.
1 parent 1a65b92
Raw File
CMakeLists.txt
############################################################################
# CMakeLists.txt file for building ROOT build package
# @author Pere Mato, CERN
############################################################################

file(GLOB rmkdepend_srcs ${CMAKE_CURRENT_SOURCE_DIR}/rmkdepend/*.cxx ${CMAKE_CURRENT_SOURCE_DIR}/rmkdepend/*.c )
set_source_files_properties(${rmkdepend_srcs} PROPERTIES 
                                              COMPILE_DEFINITIONS "INCLUDEDIR=\"/usr/include\";OBJSUFFIX=\".o\";USE_CHMOD")

ROOT_EXECUTABLE(rmkdepend ${rmkdepend_srcs})

if(WIN32)
  ROOT_EXECUTABLE(bindexplib  ${CMAKE_CURRENT_SOURCE_DIR}/win/bindexplib/*.cxx)
endif()

back to top