Skip to content
Snippets Groups Projects
Commit daf3cf72 authored by Andrea Michelotti's avatar Andrea Michelotti
Browse files

wrapper to call ccs once installed.

parent 714f45dd
No related branches found
No related tags found
No related merge requests found
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment