diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2015-11-13 22:41:14 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2015-11-13 22:41:14 +0000 |
commit | f10158c025ebed8d17ee7e63e9a4a9ace4c22f17 (patch) | |
tree | c0f5e9d69afe1b07fc8a4ecb023f524950c9d977 /clang/tools/c-index-test | |
parent | b6c81d2b924c1759a90651a0d41e5a505752548c (diff) | |
download | bcm5719-llvm-f10158c025ebed8d17ee7e63e9a4a9ace4c22f17.tar.gz bcm5719-llvm-f10158c025ebed8d17ee7e63e9a4a9ace4c22f17.zip |
[CMake] Don't install c-index-test when LLVM_INSTALL_TOOLCHAIN_ONLY=ON.
llvm-svn: 253099
Diffstat (limited to 'clang/tools/c-index-test')
-rw-r--r-- | clang/tools/c-index-test/CMakeLists.txt | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/clang/tools/c-index-test/CMakeLists.txt b/clang/tools/c-index-test/CMakeLists.txt index 64efb1135f8..c78a42ffe8e 100644 --- a/clang/tools/c-index-test/CMakeLists.txt +++ b/clang/tools/c-index-test/CMakeLists.txt @@ -29,20 +29,22 @@ if (CLANG_HAVE_LIBXML) target_link_libraries(c-index-test ${LIBXML2_LIBRARIES}) endif() -if(INTERNAL_INSTALL_PREFIX) - set(INSTALL_DESTINATION "${INTERNAL_INSTALL_PREFIX}/bin") -else() - set(INSTALL_DESTINATION bin) -endif() +if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY) + if(INTERNAL_INSTALL_PREFIX) + set(INSTALL_DESTINATION "${INTERNAL_INSTALL_PREFIX}/bin") + else() + set(INSTALL_DESTINATION bin) + endif() -install(TARGETS c-index-test - RUNTIME DESTINATION "${INSTALL_DESTINATION}" - COMPONENT c-index-test) + install(TARGETS c-index-test + RUNTIME DESTINATION "${INSTALL_DESTINATION}" + COMPONENT c-index-test) -if (NOT CMAKE_CONFIGURATION_TYPES) # don't add this for IDE's. - add_custom_target(install-c-index-test - DEPENDS c-index-test - COMMAND "${CMAKE_COMMAND}" - -DCMAKE_INSTALL_COMPONENT=c-index-test - -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") + if (NOT CMAKE_CONFIGURATION_TYPES) # don't add this for IDE's. + add_custom_target(install-c-index-test + DEPENDS c-index-test + COMMAND "${CMAKE_COMMAND}" + -DCMAKE_INSTALL_COMPONENT=c-index-test + -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") + endif() endif() |