forked from OSchip/llvm-project
[CMake] Use append instead of set with the list
This addresses an issue introduced by D99706.
This commit is contained in:
parent
83dc218c77
commit
b0d286b03c
|
@ -29,7 +29,7 @@ if(NOT ANDROID)
|
||||||
endif()
|
endif()
|
||||||
# Tests use C++ standard library headers.
|
# Tests use C++ standard library headers.
|
||||||
if (TARGET cxx-headers OR HAVE_LIBCXX)
|
if (TARGET cxx-headers OR HAVE_LIBCXX)
|
||||||
set(SANITIZER_COMMON_LIT_TEST_DEPS cxx-headers)
|
list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS cxx-headers)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue