diff options
author | Chris Bieneman <beanz@apple.com> | 2016-08-25 20:53:00 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-08-25 20:53:00 +0000 |
commit | 6ac9172934748a4a9e6ec4bd97152271eede40b5 (patch) | |
tree | 9fb865d69d53115d9257d7450b8ab03518ec6949 /llvm/cmake/modules/CMakeLists.txt | |
parent | d658f2fdb1de551f5c07a0b1719f38431e867569 (diff) | |
download | bcm5719-llvm-6ac9172934748a4a9e6ec4bd97152271eede40b5.tar.gz bcm5719-llvm-6ac9172934748a4a9e6ec4bd97152271eede40b5.zip |
cmake: Install CheckAtomic.cmake (needed by lldb)
Summary:
Install CheckAtomic.cmake along with other LLVM modules, therefore making it possible for other projects to use it. This file is needed for LLDB to be built standalone, and installing it was suggested in https://reviews.llvm.org/D23881.
Patch by: Michał Górny
Reviewers: krytarowski, zturner, eugenis, jyknight, labath, beanz
Subscribers: beanz, llvm-commits
Differential Revision: https://reviews.llvm.org/D23887
llvm-svn: 279777
Diffstat (limited to 'llvm/cmake/modules/CMakeLists.txt')
-rw-r--r-- | llvm/cmake/modules/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/cmake/modules/CMakeLists.txt b/llvm/cmake/modules/CMakeLists.txt index 826dd366359..d2510b853ad 100644 --- a/llvm/cmake/modules/CMakeLists.txt +++ b/llvm/cmake/modules/CMakeLists.txt @@ -91,6 +91,5 @@ if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY) PATTERN LLVMConfig.cmake EXCLUDE PATTERN LLVMConfigVersion.cmake EXCLUDE PATTERN LLVM-Config.cmake EXCLUDE - PATTERN GetHostTriple.cmake EXCLUDE - PATTERN CheckAtomic.cmake EXCLUDE) + PATTERN GetHostTriple.cmake EXCLUDE) endif() |