We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pip_install_nodeps
1 parent be174cd commit 740da41Copy full SHA for 740da41
CMakeLists.txt
@@ -280,6 +280,17 @@ add_custom_target(${pyAMReX_CUSTOM_TARGET_PREFIX}pip_install
280
${pyAMReX_CUSTOM_TARGET_PREFIX}pip_install_requirements
281
)
282
283
+# this is for package managers only
284
+add_custom_target(${pyAMReX_CUSTOM_TARGET_PREFIX}pip_install_nodeps
285
+ ${CMAKE_COMMAND} -E env AMREX_MPI=${AMReX_MPI}
286
+ ${Python_EXECUTABLE} -m pip install --force-reinstall --no-index --no-deps ${PYINSTALLOPTIONS} --find-links=amrex-whl amrex
287
+ WORKING_DIRECTORY
288
+ ${pyAMReX_BINARY_DIR}
289
+ DEPENDS
290
+ ${pyAMReX_INSTALL_TARGET_NAMES}
291
+ ${pyAMReX_CUSTOM_TARGET_PREFIX}pip_wheel
292
+)
293
+
294
295
# Tests #######################################################################
296
#
0 commit comments