Skip to content

Commit

Permalink
Merge pull request #301 from kjvbrt/addon_install
Browse files Browse the repository at this point in the history
Installing addon python modules
  • Loading branch information
kjvbrt authored Jul 14, 2023
2 parents 146aae8 + b7e1738 commit 092c9e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions addons/FastJet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ install(FILES
${CMAKE_CURRENT_LIST_DIR}/JetClustering.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/FastJet
)

file(GLOB _addon_python_files python/*.py)
install(FILES ${_addon_python_files} DESTINATION ${CMAKE_INSTALL_PREFIX}/python/addons/FastJet)
3 changes: 3 additions & 0 deletions addons/ONNXRuntime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ if(BUILD_TESTING)
# add all integration tests
add_integration_test("examples/FCCee/weaver/analysis_inference.py")
endif()

file(GLOB _addon_python_files python/*.py)
install(FILES ${_addon_python_files} DESTINATION ${CMAKE_INSTALL_PREFIX}/python/addons/ONNXRuntime)

0 comments on commit 092c9e1

Please sign in to comment.