diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-11-18 10:57:36 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-11-18 10:57:36 +0000 |
commit | 1011fe6a6e9ad45dd2bbaa7dd9011ce05d4ff716 (patch) | |
tree | 83adca40640a32976e02efcbce13d855add78bfa | |
parent | 151f06d80d7c606fe6e6ca89d43252580797196d (diff) | |
download | bcm5719-llvm-1011fe6a6e9ad45dd2bbaa7dd9011ce05d4ff716.tar.gz bcm5719-llvm-1011fe6a6e9ad45dd2bbaa7dd9011ce05d4ff716.zip |
CMake: make sure compiler-rt headers are copied to build tree if 'compilrer-rt' target is built
llvm-svn: 195002
-rw-r--r-- | compiler-rt/include/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/include/CMakeLists.txt b/compiler-rt/include/CMakeLists.txt index 67e1327a31d..d8a73872ba4 100644 --- a/compiler-rt/include/CMakeLists.txt +++ b/compiler-rt/include/CMakeLists.txt @@ -34,6 +34,7 @@ foreach( f ${SANITIZER_HEADERS} ) endforeach( f ) add_custom_target(compiler-rt-headers ALL DEPENDS ${out_files}) +add_dependencies(compiler-rt compiler-rt-headers) # Install sanitizer headers. install(FILES ${SANITIZER_HEADERS} |