diff --git a/ccs/ccs.sh b/ccs/ccs.sh
new file mode 100755
index 0000000000000000000000000000000000000000..7a114d190bbb11460f0081f8148e9305a2362def
--- /dev/null
+++ b/ccs/ccs.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+realpath=`readlink -f $0`
+dir=`dirname $realpath`
+os=`uname -s`
+if [ "$os" == "Darwin" ];then 
+    DYLD_LIBRARY_PATH=$dir/../lib $dir/ccs
+else
+    LD_LIBRARY_PATH=$dir/../lib $dir/ccs
+fi
+