Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/reusable_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,14 +226,14 @@ jobs:
level_zero_provider: ['ON']
cuda_provider: ['ON']
include:
# temporarily disable failing CI job
#- os: 'windows-2022'
# build_type: Release
# compiler: {c: clang-cl, cxx: clang-cl}
# shared_library: 'ON'
# level_zero_provider: 'ON'
# cuda_provider: 'ON'
# toolset: "-T ClangCL"
- os: 'windows-2019'
# clang build fails on Windows 2022
build_type: Release
compiler: {c: clang-cl, cxx: clang-cl}
shared_library: 'ON'
level_zero_provider: 'ON'
cuda_provider: 'ON'
toolset: "-T ClangCL"
- os: 'windows-2022'
build_type: Release
compiler: {c: cl, cxx: cl}
Expand Down
4 changes: 2 additions & 2 deletions src/coarse/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Copyright (C) 2024 Intel Corporation
# Copyright (C) 2024-2025 Intel Corporation
# Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

include(${UMF_CMAKE_SOURCE_DIR}/cmake/helpers.cmake)

set(COARSE_SOURCES coarse.c ../ravl/ravl.c)

if(UMF_BUILD_SHARED_LIBRARY)
if(UMF_BUILD_SHARED_LIBRARY AND (NOT WINDOWS))
set(COARSE_EXTRA_SRCS ${BA_SOURCES})
set(COARSE_EXTRA_LIBS $<BUILD_INTERFACE:umf_utils>)
endif()
Expand Down
Loading