forked from OSchip/llvm-project
[llvm] Include utils/unittest before projects and runtimes
Include utils/unittest before projects and runtimes so that downstream
projects can check for the existence of the llvm_gtest target. This is
motivated by 9c6c4d675b
which fixes the stand-alone build
configuration where LLVM_MAIN_SRC_DIR does not exist.
Differential revision: https://reviews.llvm.org/D124314
This commit is contained in:
parent
91594b5b98
commit
350755d94d
|
@ -1147,6 +1147,9 @@ if( LLVM_INCLUDE_UTILS )
|
|||
add_subdirectory(utils/UnicodeData)
|
||||
add_subdirectory(utils/yaml-bench)
|
||||
add_subdirectory(utils/split-file)
|
||||
if( LLVM_INCLUDE_TESTS )
|
||||
add_subdirectory(utils/unittest)
|
||||
endif()
|
||||
else()
|
||||
if ( LLVM_INCLUDE_TESTS )
|
||||
message(FATAL_ERROR "Including tests when not building utils will not work.
|
||||
|
@ -1191,9 +1194,6 @@ if( LLVM_INCLUDE_TESTS )
|
|||
add_subdirectory(utils/lit)
|
||||
add_subdirectory(test)
|
||||
add_subdirectory(unittests)
|
||||
if( LLVM_INCLUDE_UTILS )
|
||||
add_subdirectory(utils/unittest)
|
||||
endif()
|
||||
|
||||
if (WIN32)
|
||||
# This utility is used to prevent crashing tests from calling Dr. Watson on
|
||||
|
|
Loading…
Reference in New Issue