Skip to content

Commit 7316d56

Browse files
authored
Merge pull request #2174 from debashish-ghosh/patch-1
Use new UUID for CMake version 4.4.0 onwards for import std support
2 parents b73f140 + 7364bb4 commit 7316d56

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

cmake/enable-experimental-import-std.cmake

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2-
if(CMAKE_VERSION VERSION_GREATER_EQUAL "4.3.0")
2+
if(CMAKE_VERSION VERSION_GREATER_EQUAL "4.4.0")
33
set(CMAKE_EXPERIMENTAL_CXX_IMPORT_STD
4-
"451f2fe2-a8a2-47c3-bc32-94786d8fc91b"
4+
"f35a9ac6-8463-4d38-8eec-5d6008153e7d"
55
)
66
elseif(CMAKE_VERSION VERSION_GREATER_EQUAL "3.30.0")
77
if(CMAKE_VERSION VERSION_LESS "3.31.8")
@@ -20,5 +20,9 @@ elseif(CMAKE_VERSION VERSION_GREATER_EQUAL "3.30.0")
2020
set(CMAKE_EXPERIMENTAL_CXX_IMPORT_STD
2121
"d0edc3af-4c50-42ea-a356-e2862fe7a444"
2222
)
23+
elseif(CMAKE_VERSION VERSION_LESS "4.4.0")
24+
set(CMAKE_EXPERIMENTAL_CXX_IMPORT_STD
25+
"451f2fe2-a8a2-47c3-bc32-94786d8fc91b"
26+
)
2327
endif()
2428
endif()

0 commit comments

Comments
 (0)