summaryrefslogtreecommitdiff
path: root/BlocksRuntime
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-04-04 22:12:01 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-04-04 22:12:01 +0000
commit062ed090ed6416fe639a2dcb2d51fbbeb2f1b579 (patch)
tree12c18856a971aca170f668c5076bd00fa3ef961c /BlocksRuntime
parentd01c51d33a5b4c52160c0a6cc18f7739a0a137d3 (diff)
downloadcompiler-rt-062ed090ed6416fe639a2dcb2d51fbbeb2f1b579.tar.gz
compiler-rt-062ed090ed6416fe639a2dcb2d51fbbeb2f1b579.tar.bz2
compiler-rt-062ed090ed6416fe639a2dcb2d51fbbeb2f1b579.tar.xz
Remove the old, and non-functional CMake build system from CompilerRT.
I cannot build any part of this successfully on either Linux or Darwin, and the replacement is worlds simpler by requiring that this be built as a subproject of LLVM. If this breaks you for any reason, please let me know, and let me know what your use case is. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@154059 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'BlocksRuntime')
-rw-r--r--BlocksRuntime/CMakeLists.txt13
1 files changed, 0 insertions, 13 deletions
diff --git a/BlocksRuntime/CMakeLists.txt b/BlocksRuntime/CMakeLists.txt
deleted file mode 100644
index 5b4686b8..00000000
--- a/BlocksRuntime/CMakeLists.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-PROJECT( BlocksRuntime C )
-
-SET( SRCS
- runtime.c
- data.c
- )
-
-ADD_LIBRARY( ${PROJECT_NAME} SHARED ${SRCS})
-SET_TARGET_PROPERTIES( ${PROJECT_NAME} PROPERTIES
- INSTALL_NAME_DIR ${CMAKE_INSTALL_PREFIX}/lib )
-
-INSTALL( TARGETS ${PROJECT_NAME} DESTINATION lib )
-INSTALL( FILES Block.h Block_private.h DESTINATION include )