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.
1 parent 19096ce commit 9603d32Copy full SHA for 9603d32
.github/workflows/reusable_fast.yml
@@ -70,6 +70,9 @@ jobs:
70
vcpkgDirectory: ${{env.BUILD_DIR}}/vcpkg
71
vcpkgJsonGlob: '**/vcpkg.json'
72
73
+ - name: test
74
+ run: pwsh
75
+
76
- name: Install dependencies (windows-latest)
77
if: matrix.os == 'windows-latest'
78
run: vcpkg install
CMakeLists.txt
@@ -383,12 +383,7 @@ if(WINDOWS)
383
endif()
384
385
# set UMF_PROXY_LIB_ENABLED
386
-if(UMF_LINK_HWLOC_STATICALLY)
387
- message(
388
- STATUS
389
- "Disabling the proxy library, because HWLOC is set to link statically which is not supported"
390
- )
391
-elseif(UMF_DISABLE_HWLOC)
+if(UMF_DISABLE_HWLOC)
392
message(STATUS "Disabling the proxy library, because HWLOC is disabled")
393
elseif(UMF_PROXY_LIB_BASED_ON_POOL STREQUAL SCALABLE)
394
if(UMF_POOL_SCALABLE_ENABLED)
0 commit comments