summaryrefslogtreecommitdiff
path: root/BlocksRuntime
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-03 01:08:25 +0000
committerEdward O'Callaghan <eocallaghan@auroraux.org>2009-08-03 01:08:25 +0000
commitd904635616ca27a56531375a7d25547c930a4040 (patch)
tree2debf48933b911292580b8ed393f7f19017f78d2 /BlocksRuntime
parentad9a17686dff730aa89f181b22ab4ec827d40be2 (diff)
downloadcompiler-rt-d904635616ca27a56531375a7d25547c930a4040.tar.gz
compiler-rt-d904635616ca27a56531375a7d25547c930a4040.tar.bz2
compiler-rt-d904635616ca27a56531375a7d25547c930a4040.tar.xz
Initial import of CMake type build system. Just like the rest of llvm..
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@77933 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'BlocksRuntime')
-rw-r--r--BlocksRuntime/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/BlocksRuntime/CMakeLists.txt b/BlocksRuntime/CMakeLists.txt
new file mode 100644
index 00000000..33ab7e55
--- /dev/null
+++ b/BlocksRuntime/CMakeLists.txt
@@ -0,0 +1,8 @@
+PROJECT( BlocksRuntime )
+
+SET( SRCS
+ runtime.c
+ data.c
+ )
+
+ADD_LIBRARY( ${PROJECT_NAME} SHARED ${SRCS})