aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2013-04-29 11:10:40 -0700
committerDerek Schuff <dschuff@chromium.org>2013-04-29 11:10:40 -0700
commit9986176a70307f63f089d1bc79284ccb8f19d6cb (patch)
treeead960c6a72d9da32429a2a53676d44271670505 /lib
parentfa3dba3985f385272bd04e160b58d136d1d6d4dd (diff)
Fix CMake build of bitcode wrapper header utility.
It wasn't even attempting to build before. R=jvoung@chromium.org BUG=cmake/ninja build Review URL: https://codereview.chromium.org/13844019
Diffstat (limited to 'lib')
-rw-r--r--lib/CMakeLists.txt1
-rw-r--r--lib/Wrap/CMakeLists.txt6
2 files changed, 7 insertions, 0 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index d1ea027338..7b2adec6e8 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -14,3 +14,4 @@ add_subdirectory(ExecutionEngine)
add_subdirectory(Target)
add_subdirectory(AsmParser)
add_subdirectory(Archive)
+add_subdirectory(Wrap) \ No newline at end of file
diff --git a/lib/Wrap/CMakeLists.txt b/lib/Wrap/CMakeLists.txt
new file mode 100644
index 0000000000..da44a6bb56
--- /dev/null
+++ b/lib/Wrap/CMakeLists.txt
@@ -0,0 +1,6 @@
+add_llvm_library(LLVMWrap
+ bitcode_wrapperer.cpp
+ file_wrapper_input.cpp
+ file_wrapper_output.cpp
+ wrapper_output.cpp
+) \ No newline at end of file