[cfe-commits] r169139 - in /cfe/trunk/lib/Format: CMakeLists.txt Makefile
Benjamin Kramer
benny.kra at googlemail.com
Mon Dec 3 10:28:52 PST 2012
Author: d0k
Date: Mon Dec 3 12:28:52 2012
New Revision: 169139
URL: http://llvm.org/viewvc/llvm-project?rev=169139&view=rev
Log:
libclangFormat is not libclangTooling, but it depends on it.
Modified:
cfe/trunk/lib/Format/CMakeLists.txt
cfe/trunk/lib/Format/Makefile
Modified: cfe/trunk/lib/Format/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/CMakeLists.txt?rev=169139&r1=169138&r2=169139&view=diff
==============================================================================
--- cfe/trunk/lib/Format/CMakeLists.txt (original)
+++ cfe/trunk/lib/Format/CMakeLists.txt Mon Dec 3 12:28:52 2012
@@ -21,4 +21,5 @@
clangASTMatchers
clangRewriteCore
clangRewriteFrontend
+ clangTooling
)
Modified: cfe/trunk/lib/Format/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/Makefile?rev=169139&r1=169138&r2=169139&view=diff
==============================================================================
--- cfe/trunk/lib/Format/Makefile (original)
+++ cfe/trunk/lib/Format/Makefile Mon Dec 3 12:28:52 2012
@@ -1,4 +1,4 @@
-##===- clang/lib/Tooling/Makefile ---------------------------*- Makefile -*-===##
+##===- clang/lib/Format/Makefile ---------------------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
@@ -8,6 +8,6 @@
##===----------------------------------------------------------------------===##
CLANG_LEVEL := ../..
-LIBRARYNAME := clangTooling
+LIBRARYNAME := clangFormat
include $(CLANG_LEVEL)/Makefile
More information about the cfe-commits
mailing list