Fork me on GitHub

Changeset ba88abf in git


Ignore:
Timestamp:
Oct 26, 2020, 3:19:28 PM (4 years ago)
Author:
GitHub <noreply@…>
Children:
1a35f96
Parents:
80763ac (diff), b8a84d7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Roberto Preghenella <preghenella@…> (10/26/20 15:19:28)
git-committer:
GitHub <noreply@…> (10/26/20 15:19:28)
Message:

Merge pull request #2 from preghenella/rdev-fix-relocation

Fix relocation issues with header files in dictionary

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/CMakeLists.txt

    r80763ac rba88abf  
    1010
    1111DELPHES_GENERATE_DICTIONARY(ClassesDict
    12   ${CMAKE_CURRENT_SOURCE_DIR}/DelphesModule.h
    13   ${CMAKE_CURRENT_SOURCE_DIR}/DelphesFactory.h
    14   ${CMAKE_CURRENT_SOURCE_DIR}/SortableObject.h
    15   ${CMAKE_CURRENT_SOURCE_DIR}/DelphesClasses.h
     12  classes/DelphesModule.h
     13  classes/DelphesFactory.h
     14  classes/SortableObject.h
     15  classes/DelphesClasses.h
    1616  LINKDEF ClassesLinkDef.h
    1717)
  • external/ExRootAnalysis/CMakeLists.txt

    r80763ac rba88abf  
    66file(GLOB sources *.cc)
    77file(GLOB headers *.h)
     8
    89list(REMOVE_ITEM headers ${CMAKE_CURRENT_SOURCE_DIR}/ExRootAnalysisLinkDef.h)
    910
    10 DELPHES_GENERATE_DICTIONARY(ExRootAnalysisDict ${headers} LINKDEF ExRootAnalysisLinkDef.h)
     11DELPHES_GENERATE_DICTIONARY(ExRootAnalysisDict
     12  ExRootAnalysis/ExRootClassifier.h
     13  ExRootAnalysis/ExRootConfReader.h
     14  ExRootAnalysis/ExRootFilter.h
     15  ExRootAnalysis/ExRootProgressBar.h
     16  ExRootAnalysis/ExRootResult.h
     17  ExRootAnalysis/ExRootTask.h
     18  ExRootAnalysis/ExRootTreeBranch.h
     19  ExRootAnalysis/ExRootTreeReader.h
     20  ExRootAnalysis/ExRootTreeWriter.h
     21  ExRootAnalysis/ExRootUtilities.h
     22  LINKDEF ExRootAnalysisLinkDef.h)
    1123
    1224add_library(ExRootAnalysis OBJECT ${sources} ExRootAnalysisDict.cxx)
Note: See TracChangeset for help on using the changeset viewer.