Skip to content

Commit

Permalink
Compiling again with new cuda
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Jan 13, 2025
1 parent 8773200 commit 27b4d54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ endif()
# Dependencies for the client
add_library(client_deps INTERFACE)
target_link_libraries(client_deps INTERFACE
Chimaera::client)
chimaera::client_host)
target_include_directories(client_deps INTERFACE ${libelf_INCLUDE_DIRS})
target_link_directories(client_deps INTERFACE ${libelf_LIBRARY_DIRS})
target_link_libraries(client_deps INTERFACE ${libelf_LIBRARIES})

# Dependencies for the runtime
add_library(runtime_deps INTERFACE)
target_link_libraries(runtime_deps INTERFACE
Chimaera::runtime)
chimaera::runtime)
target_include_directories(runtime_deps INTERFACE ${libelf_INCLUDE_DIRS})
target_link_directories(runtime_deps INTERFACE ${libelf_LIBRARY_DIRS})
target_link_libraries(runtime_deps INTERFACE ${libelf_LIBRARIES})
Expand Down
4 changes: 2 additions & 2 deletions tasks/hermes_core/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#------------------------------------------------------------------------------
# Build hermes_core Task Library
#------------------------------------------------------------------------------
add_chimod_library(hermes_core hermes_core.cc)
add_chimod_library(hermes core hermes_core.cc)
#------------------------------------------------------------------------------
# Install hermes_core Task Library
#------------------------------------------------------------------------------
install(
TARGETS
hermes_core
${hermes_core_exports}
LIBRARY DESTINATION ${HERMES_INSTALL_LIB_DIR}
ARCHIVE DESTINATION ${HERMES_INSTALL_LIB_DIR}
RUNTIME DESTINATION ${HERMES_INSTALL_BIN_DIR}
Expand Down

0 comments on commit 27b4d54

Please sign in to comment.