Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed May 21, 2024
1 parent 94039e3 commit f7e67c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ SET(core_headers
${PROJECT_SOURCE_DIR}/include/podio/DatamodelRegistry.h
${PROJECT_SOURCE_DIR}/include/podio/utilities/DatamodelRegistryIOHelpers.h
${PROJECT_SOURCE_DIR}/include/podio/GenericParameters.h
${PROJECT_SOURCE_DIR}/include/podio/Reader.h
${PROJECT_SOURCE_DIR}/include/podio/Writer.h
)

PODIO_ADD_LIB_AND_DICT(podio "${core_headers}" "${core_sources}" selection.xml)
Expand All @@ -92,8 +94,6 @@ SET(root_headers
${PROJECT_SOURCE_DIR}/include/podio/ROOTReader.h
${PROJECT_SOURCE_DIR}/include/podio/ROOTLegacyReader.h
${PROJECT_SOURCE_DIR}/include/podio/ROOTWriter.h
${PROJECT_SOURCE_DIR}/include/podio/Reader.h
${PROJECT_SOURCE_DIR}/include/podio/Writer.h
)
if(ENABLE_RNTUPLE)
list(APPEND root_headers
Expand Down Expand Up @@ -150,7 +150,7 @@ if(ENABLE_SIO)
endif()

# --- Install everything
install(TARGETS podio podioDict podioRootIO podioRootIODict ${INSTALL_LIBRARIES}
install(TARGETS podio podioDict podioRootIO podioRootIODict podioIO ${INSTALL_LIBRARIES}
EXPORT podioTargets
DESTINATION "${CMAKE_INSTALL_LIBDIR}")

Expand Down
2 changes: 2 additions & 0 deletions src/io_selection.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<lcgdict>
<selection>
<class name="podio::Reader"/>
<class name="podio::Writer"/>
</selection>
</lcgdict>
2 changes: 0 additions & 2 deletions src/root_selection.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,5 @@
<class name="podio::ROOTWriter"/>
<class name="podio::RNTupleReader"/>
<class name="podio::RNTupleWriter"/>
<class name="podio::Reader"/>
<class name="podio::Writer"/>
</selection>
</lcgdict>

0 comments on commit f7e67c5

Please sign in to comment.