Skip to content

Commit

Permalink
Installing addon python modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kjvbrt committed Jul 14, 2023
1 parent 146aae8 commit b7e1738
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 b7e1738

Please sign in to comment.