Skip to content

Instantly share code, notes, and snippets.

@hkaiser

hkaiser/diff Secret

Created June 18, 2024 15:35
Show Gist options
  • Save hkaiser/debb4ce2e5cf64722db0f49c90cee01a to your computer and use it in GitHub Desktop.
Save hkaiser/debb4ce2e5cf64722db0f49c90cee01a to your computer and use it in GitHub Desktop.
diff --git a/cmake/HPX_SetupHwloc.cmake b/cmake/HPX_SetupHwloc.cmake
index 7406a1d..6d98a35 100644
--- a/cmake/HPX_SetupHwloc.cmake
+++ b/cmake/HPX_SetupHwloc.cmake
@@ -110,12 +110,9 @@ else()
if(HPX_WITH_FETCH_HWLOC AND "${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
add_custom_target(
HwlocDLL ALL
- COMMAND ${CMAKE_COMMAND} -E make_directory
- ${RUNTIME_OUTPUT_DIRECTORY}
- COMMAND
- ${CMAKE_COMMAND} -E copy_if_different
- "${HWLOC_ROOT}/bin/libhwloc-15.dll"
- ${RUNTIME_OUTPUT_DIRECTORY}
+ COMMAND ${CMAKE_COMMAND} -E make_directory ${RUNTIME_OUTPUT_DIRECTORY}
+ COMMAND ${CMAKE_COMMAND} -E copy_if_different
+ "${HWLOC_ROOT}/bin/libhwloc-15.dll" ${RUNTIME_OUTPUT_DIRECTORY}
)
add_hpx_pseudo_target(HwlocDLL)
endif()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment