diff options
author | Louis Dionne <ldionne@apple.com> | 2018-12-21 15:59:04 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2018-12-21 15:59:04 +0000 |
commit | 5e334b516b29ff0acdb758d77fb1f7c175666ed5 (patch) | |
tree | f2557981c99c923be935498d4476998d934fb952 /llvm/projects | |
parent | 96c11eceb29ec445cdaebc2d7b4b55f50afd6d14 (diff) | |
download | bcm5719-llvm-5e334b516b29ff0acdb758d77fb1f7c175666ed5.tar.gz bcm5719-llvm-5e334b516b29ff0acdb758d77fb1f7c175666ed5.zip |
[pstl] Initial integration with LLVM's CMake
Summary:
This commit adds a check-pstl CMake target that will run the tests
we currently have for pstl. Those tests are not using LLVM lit yet,
but switching them over should be a transparent change. With this
change, we can start relying on the `check-pstl` target for workflows
and CI.
Note that this commit purposefully does not support the pre-monorepo
layout (with subprojects in projects/), since LLVM is moving towards
the monorepo layout anyway.
Reviewers: jfb
Subscribers: mgorny, jkorous, dexonsmith, libcxx-commits, mclow.lists, rodgert
Differential Revision: https://reviews.llvm.org/D55963
llvm-svn: 349919
Diffstat (limited to 'llvm/projects')
-rw-r--r-- | llvm/projects/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/projects/CMakeLists.txt b/llvm/projects/CMakeLists.txt index 9afc30c8928..c98a8824773 100644 --- a/llvm/projects/CMakeLists.txt +++ b/llvm/projects/CMakeLists.txt @@ -31,6 +31,7 @@ if(${LLVM_BUILD_RUNTIME}) # dependent projects can see the target names of their dependencies. add_llvm_external_project(libunwind) add_llvm_external_project(libcxxabi) + add_llvm_external_project(pstl) add_llvm_external_project(libcxx) endif() if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT) |