forked from OSchip/llvm-project
Properly EXCLUDE_FROM_ALL the testing support library
The EXCLUDE_FROM_ALL variable is used by add_llvm_library, but lldb does not use that function (it uses llvm_add_library :P). Instead, set the directory property with the same name directly. This should fix standalone builds against an llvm install tree. llvm-svn: 369502
This commit is contained in:
parent
d1262a6e91
commit
dc5403d2dc
|
@ -1,4 +1,4 @@
|
|||
set(EXCLUDE_FROM_ALL ON)
|
||||
set_property(DIRECTORY PROPERTY EXCLUDE_FROM_ALL ON)
|
||||
add_lldb_library(lldbUtilityHelpers
|
||||
MockTildeExpressionResolver.cpp
|
||||
TestUtilities.cpp
|
||||
|
|
Loading…
Reference in New Issue