File tree Expand file tree Collapse file tree 5 files changed +851
-910
lines changed
Expand file tree Collapse file tree 5 files changed +851
-910
lines changed Original file line number Diff line number Diff line change 88
99 # ############################################################################################
1010 # HOOMD-blue version to build.
11- HOOMD_BLUE_VERSION : v5.4 .0
11+ HOOMD_BLUE_VERSION : v6.0 .0
1212 # prevent deadlocked MPI tests from causing the job to cancel
1313 MPIEXEC_TIMEOUT : 3000
1414 # allow mpirun to execute as root in the tests
Original file line number Diff line number Diff line change 1- CMAKE_MINIMUM_REQUIRED (VERSION 3.9 FATAL_ERROR)
1+ CMAKE_MINIMUM_REQUIRED (VERSION 3.15...3.27 FATAL_ERROR)
22
33# Name the plugin project.
44# TODO: Set the project title to the name of your Python package.
55project (azplugins LANGUAGES C CXX)
66
77# Find the installed HOOMD.
8- find_package (HOOMD 5.0.0 REQUIRED )
9-
8+ set (HOOMD_REQUIRED_VERSION " 5.0.0" )
9+ find_package (HOOMD REQUIRED)
1010message (STATUS "Found HOOMD ${HOOMD_VERSION} : ${HOOMD_INSTALL_PREFIX} /${PYTHON_SITE_INSTALL_DIR} " )
11+ if (NOT HOOMD_VERSION VERSION_GREATER_EQUAL HOOMD_REQUIRED_VERSION)
12+ message (FATAL_ERROR "HOOMD >=${HOOMD_REQUIRED_VERSION} required (found ${HOOMD_VERSION} )." )
13+ endif ()
1114
1215# Force installation to the HOOMD installation location.
1316set (CMAKE_INSTALL_PREFIX ${HOOMD_INSTALL_PREFIX} CACHE PATH "Installation prefix" FORCE)
Original file line number Diff line number Diff line change 22
33azplugins is a component for [ HOOMD-blue] [ 1 ] which expands its functionality for
44tackling a variety of problems in soft matter physics. Currently, azplugins is
5- tested against v5.4 .0 of HOOMD-blue. See [ CHANGELOG.rst] ( CHANGELOG.rst ) for a
5+ tested against v6.0 .0 of HOOMD-blue. See [ CHANGELOG.rst] ( CHANGELOG.rst ) for a
66list of recent development.
77
88## Compiling azplugins
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ azplugins
88
99azplugins is a component for `HOOMD-blue `_ which expands its functionality for
1010tackling a variety of problems in soft matter physics. Currently, azplugins is
11- tested against v5.4 .0 of HOOMD-blue.
11+ tested against v6.0 .0 of HOOMD-blue.
1212
1313Compiling
1414=========
You can’t perform that action at this time.
0 commit comments