From 2466b8302e694c9997a5d88af9b2ea66e22c5136 Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Wed, 20 Mar 2024 09:35:21 -0400 Subject: [PATCH] Support HOOMD-blue 4.6.0. --- .github/workflows/unit-test.yaml | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index 07374aa..1643e48 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -9,7 +9,7 @@ env: ############################################################################################# # HOOMD-blue version to build. - HOOMD_BLUE_VERSION: 4.5.0 + HOOMD_BLUE_VERSION: 4.6.0 # prevent deadlocked MPI tests from causing the job to cancel MPIEXEC_TIMEOUT: 3000 # allow mpirun to execute as root in the tests diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d1f2bc3..2cad425 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -20,7 +20,7 @@ if (ENABLE_HIP) set(_cuda_sources ${_${COMPONENT_NAME}_cu_sources}) endif (ENABLE_HIP) -pybind11_add_module(_${COMPONENT_NAME} SHARED ${_${COMPONENT_NAME}_sources} ${_cuda_sources} NO_EXTRAS) +hoomd_add_module(_${COMPONENT_NAME} SHARED ${_${COMPONENT_NAME}_sources} ${_cuda_sources} NO_EXTRAS) # Alias into the HOOMD namespace so that external and symlinked components both work. add_library(HOOMD::_${COMPONENT_NAME} ALIAS _${COMPONENT_NAME})