22 lines
276 B
Plaintext
Executable File
22 lines
276 B
Plaintext
Executable File
set -x
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
mkdir -p sdk/include
|
|
|
|
LIB=httplib
|
|
|
|
mkdir $LIB
|
|
pushd $LIB
|
|
|
|
mkdir -p httplib/include
|
|
cp $DIR/httplib.h httplib/include
|
|
|
|
|
|
popd
|
|
|
|
pushd sdk/include
|
|
rm httplib
|
|
ln -fs ../../$LIB/httplib/include httplib
|
|
popd
|
|
|