Blame | Last modification | View Log | Download | RSS feed
#!/bin/sh if test -z "${JSON_DIR}" ; then echo "You need to set JSON_DIR" exit 1; fi cd src/libjson cp $JSON_DIR/libjson.h . cp $JSON_DIR/JSONOptions.h . cp -r $JSON_DIR/Source .
#!/bin/sh
if test -z "${JSON_DIR}" ; then
echo "You need to set JSON_DIR"
exit 1;
fi
cd src/libjson
cp $JSON_DIR/libjson.h .
cp $JSON_DIR/JSONOptions.h .
cp -r $JSON_DIR/Source .