Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ESI][Runtime] Remove C++ includes from wheels #7032

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/Dialect/ESI/runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -199,15 +199,15 @@ install(RUNTIME_DEPENDENCY_SET ESIRuntime_RUNTIME_DEPS
)
install(FILES ${ESIRuntimeHeaders}
DESTINATION include/esi
COMPONENT ESIRuntime
COMPONENT ESIRuntime-dev
)
install(FILES ${ESIRuntimeBackendHeaders}
DESTINATION include/esi/backends
COMPONENT ESIRuntime
COMPONENT ESIRuntime-dev
)
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/cpp/cmake/esiaccel.cmake
DESTINATION cmake
COMPONENT ESIRuntime
COMPONENT ESIRuntime-dev
)

if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
Expand Down
5 changes: 0 additions & 5 deletions lib/Dialect/ESI/runtime/python/esiaccel/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,3 @@ def run_esi_cosim():
cosim_import = importlib.util.module_from_spec(spec)
spec.loader.exec_module(cosim_import)
return cosim_import.__main__(sys.argv)


def get_cpp_cmake() -> str:
"""Return the path to the cmake file."""
return str(_thisdir / "cmake" / "esiaccel.cmake")
Loading