Fork me on GitHub

Changeset b309507 in git


Ignore:
Timestamp:
Nov 23, 2016, 6:11:54 PM (8 years ago)
Author:
GitHub <noreply@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
781e3118
Parents:
78a2d4c (diff), 0f5bf9d (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:
Michele Selvaggi <michele.selvaggi@…> (11/23/16 18:11:54)
git-committer:
GitHub <noreply@…> (11/23/16 18:11:54)
Message:

Merge pull request #35 from jlingema/b_3.4.0

Add missing install targets

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • classes/CMakeLists.txt

    r78a2d4c rb309507  
    2121# install public headers
    2222install(FILES ${headers} DESTINATION include/classes)
     23
     24# install pcms if they are created
     25if (${ROOT_VERSION} GREATER 6)
     26  install(FILES
     27      ${PROJECT_BINARY_DIR}/classes/libClassesDict_rdict.pcm
     28      DESTINATION lib)
     29endif()
  • display/CMakeLists.txt

    r78a2d4c rb309507  
    1212
    1313add_library(display OBJECT ${sources} DisplayDict.cxx)
     14
     15# install pcms if they are created
     16if (${ROOT_VERSION} GREATER 6)
     17  install(FILES
     18      ${PROJECT_BINARY_DIR}/external/DisplayDict_rdict.pcm
     19      DESTINATION lib)
     20endif()
  • external/ExRootAnalysis/CMakeLists.txt

    r78a2d4c rb309507  
    1313
    1414# install headers needed by public Delphes headers to include/
    15 install(FILES ExRootTask.h ExRootConfReader.h DESTINATION include/ExRootAnalysis)
     15install(FILES ExRootTask.h ExRootConfReader.h ExRootTreeWriter.h ExRootTreeBranch.h
     16        DESTINATION include/ExRootAnalysis)
     17
     18# install all LinkDef files into the same folder to ease user environment
     19install(FILES ExRootAnalysisLinkDef.h DESTINATION include)
     20
     21# install pcms if they are created
     22if (${ROOT_VERSION} GREATER 6)
     23  install(FILES
     24      ${PROJECT_BINARY_DIR}/external/ExRootAnalysis/libExRootAnalysisDict_rdict.pcm
     25      DESTINATION lib)
     26endif()
  • modules/CMakeLists.txt

    r78a2d4c rb309507  
    2020
    2121# install public headers
    22 install(FILES Delphes.h DESTINATION include/modules)
     22install(FILES Delphes.h
     23        DESTINATION include/modules
     24)
     25
     26# install pcms if they are created
     27if (${ROOT_VERSION} GREATER 6)
     28  install(FILES
     29      ${PROJECT_BINARY_DIR}/modules/libModulesDict_rdict.pcm
     30      ${PROJECT_BINARY_DIR}/modules/libFastJetDict_rdict.pcm
     31      DESTINATION lib)
     32endif()
Note: See TracChangeset for help on using the changeset viewer.