#! /bin/sh

##
# This file was auto-generated by genconfig on Sat Jan 10 03:00:50 2004
##

usage()
{
    cat <<EOH
Usage: xmlwrapp-config [options]
  --version   print the version number for xmlwrapp
  --libs      print the list of libraries you must use
  --cxxflags  print the C++ compiler flags to use
EOH

    exit 1
}

if test $# -eq 0; then
    usage
fi

while test $# -gt 0; do
    case "$1" in
	--version)
	    echo "0.3.0"
	    exit 0
	    ;;

	--libs)
	    echo "-L/usr/local/lib -lxmlwrapp -L/usr/local/lib -lxml2 -L/usr/local/lib -lz -L/usr/local/lib -lm"
	    ;;

        --cflags)
	    echo "-I/usr/local/include"
	    ;;

	--cxxflags)
	    echo "-I/usr/local/include"
	    ;;

	*)
	    usage
	    ;;

    esac
    shift
done

exit 0
