Thanks, the bot is green again!

On Wed, Aug 21, 2019 at 1:20 AM Pavel Labath via lldb-commits
<lldb-commits@lists.llvm.org> wrote:
>
> Author: labath
> Date: Wed Aug 21 01:21:51 2019
> New Revision: 369502
>
> URL: http://llvm.org/viewvc/llvm-project?rev=369502&view=rev
> Log:
> 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.
>
> Modified:
>     lldb/trunk/unittests/TestingSupport/CMakeLists.txt
>
> Modified: lldb/trunk/unittests/TestingSupport/CMakeLists.txt
> URL: 
> http://llvm.org/viewvc/llvm-project/lldb/trunk/unittests/TestingSupport/CMakeLists.txt?rev=369502&r1=369501&r2=369502&view=diff
> ==============================================================================
> --- lldb/trunk/unittests/TestingSupport/CMakeLists.txt (original)
> +++ lldb/trunk/unittests/TestingSupport/CMakeLists.txt Wed Aug 21 01:21:51 
> 2019
> @@ -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
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits@lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to