From: Argyrios Kyrtzidis Date: Fri, 13 Nov 2015 22:41:14 +0000 (+0000) Subject: [CMake] Don't install c-index-test when LLVM_INSTALL_TOOLCHAIN_ONLY=ON. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb1efc9aa9f9506fd163b6bb80d044be46caca07;p=clang [CMake] Don't install c-index-test when LLVM_INSTALL_TOOLCHAIN_ONLY=ON. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253099 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/c-index-test/CMakeLists.txt b/tools/c-index-test/CMakeLists.txt index 64efb1135f..c78a42ffe8 100644 --- a/tools/c-index-test/CMakeLists.txt +++ b/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()