Skip to content

Commit ca00718

Browse files
committed
[OpenMP] Fix missing CMake function in runtimes build
Summary: We borrowed this function from LLVM, my previous patch removed that. Now we redefine it if it's not present.
1 parent fb23fab commit ca00718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openmp/cmake/HandleOpenMPOptions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if (OPENMP_STANDALONE_BUILD)
1+
if (NOT COMMAND append_if)
22
# From HandleLLVMOptions.cmake
33
function(append_if condition value)
44
if (${condition})

0 commit comments

Comments
 (0)