9 lines
351 B
Bash
Executable File
9 lines
351 B
Bash
Executable File
# This script must be run when you uncompress the archive or if you move it to
|
|
# a new position.
|
|
|
|
export N=`pwd`/lib
|
|
echo install library in path $N
|
|
install_name_tool -id $N/libortools.dylib lib/libortools.dylib
|
|
export P=`otool -L lib/libortools.dylib | grep -v ':' | grep libortools | cut -d '(' -f 1`
|
|
echo the new path of the or-tools library is $P
|