summaryrefslogtreecommitdiff
path: root/tools/c-arcmt-test
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-06-21 01:30:21 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-06-21 01:30:21 +0000
commitb0d8671f95fe08a220118bca29063ba4d11a9dac (patch)
treecab72330a29dcc55d7c6f27692624f3e70469bd5 /tools/c-arcmt-test
parent7d96f6106bfbd85b1af06f34fdbf2834aad0e47e (diff)
downloadclang-b0d8671f95fe08a220118bca29063ba4d11a9dac.tar.gz
clang-b0d8671f95fe08a220118bca29063ba4d11a9dac.tar.bz2
clang-b0d8671f95fe08a220118bca29063ba4d11a9dac.tar.xz
Remove a goofy CMake hack and use the standard CMake facilities to
express library-level dependencies within Clang. This is no more verbose really, and plays nicer with the rest of the CMake facilities. It should also have no change in functionality. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-arcmt-test')
-rw-r--r--tools/c-arcmt-test/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/c-arcmt-test/CMakeLists.txt b/tools/c-arcmt-test/CMakeLists.txt
index 351f4adca1..1e72261b21 100644
--- a/tools/c-arcmt-test/CMakeLists.txt
+++ b/tools/c-arcmt-test/CMakeLists.txt
@@ -1,5 +1,3 @@
-set(LLVM_USED_LIBS libclang)
-
set( LLVM_LINK_COMPONENTS
support
mc
@@ -9,6 +7,10 @@ add_clang_executable(c-arcmt-test
c-arcmt-test.c
)
+target_link_libraries(c-arcmt-test
+ libclang
+ )
+
set_target_properties(c-arcmt-test
PROPERTIES
LINKER_LANGUAGE CXX)