summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTycho Bickerstaff <work.tycho@gmail.com>2013-12-19 01:55:01 +0100
committerTycho Bickerstaff <work.tycho@gmail.com>2013-12-19 01:55:01 +0100
commit95c7407dd37b630b03b5a0786e2693dfed598ea3 (patch)
treeeb1269bfcb01e4de09a508d8a9484de8db0f079c /lib
parentadded expat as lua bindings dependincy (diff)
downloadcuberite-95c7407dd37b630b03b5a0786e2693dfed598ea3.tar
cuberite-95c7407dd37b630b03b5a0786e2693dfed598ea3.tar.gz
cuberite-95c7407dd37b630b03b5a0786e2693dfed598ea3.tar.bz2
cuberite-95c7407dd37b630b03b5a0786e2693dfed598ea3.tar.lz
cuberite-95c7407dd37b630b03b5a0786e2693dfed598ea3.tar.xz
cuberite-95c7407dd37b630b03b5a0786e2693dfed598ea3.tar.zst
cuberite-95c7407dd37b630b03b5a0786e2693dfed598ea3.zip
Diffstat (limited to 'lib')
-rw-r--r--lib/md5/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/md5/CMakeLists.txt b/lib/md5/CMakeLists.txt
new file mode 100644
index 000000000..8ba09a0dd
--- /dev/null
+++ b/lib/md5/CMakeLists.txt
@@ -0,0 +1,11 @@
+
+cmake_minimum_required (VERSION 2.6)
+project (md5)
+
+include_directories ("${PROJECT_SOURCE_DIR}/../../src/")
+
+file(GLOB SOURCE
+ "*.cpp"
+)
+
+add_library(md5 ${SOURCE})