diff options
Diffstat (limited to 'tools/c-index-test')
-rw-r--r-- | tools/c-index-test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tools/c-index-test/Makefile | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tools/c-index-test/CMakeLists.txt b/tools/c-index-test/CMakeLists.txt index 743268cb51..afe49ed6a7 100644 --- a/tools/c-index-test/CMakeLists.txt +++ b/tools/c-index-test/CMakeLists.txt @@ -14,5 +14,3 @@ target_link_libraries(c-index-test set_target_properties(c-index-test PROPERTIES LINKER_LANGUAGE CXX) - -install(TARGETS c-index-test RUNTIME DESTINATION bin) diff --git a/tools/c-index-test/Makefile b/tools/c-index-test/Makefile index 284844fd0c..932dbb2d16 100644 --- a/tools/c-index-test/Makefile +++ b/tools/c-index-test/Makefile @@ -17,6 +17,9 @@ INTERNAL_TOOL = 1 # No plugins, optimize startup time. TOOL_NO_EXPORTS = 1 +# Don't install this. It is used for tests. +NO_INSTALL = 1 + LINK_COMPONENTS := support mc USEDLIBS = clang.a clangFrontend.a clangDriver.a \ clangTooling.a \ |