You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
419 B

  1. #!/usr/bin/env bash
  2. # This file is intended to be run on unix systems to configure librdkafka
  3. # inside the submodules
  4. # This does not get run on windows which uses the build in solutions file
  5. # Get script directory
  6. scriptdir=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)
  7. pushd ./deps/librdkafka &> /dev/null
  8. ./configure --prefix="${scriptdir}/build/deps" --libdir="${scriptdir}/build/deps" $*
  9. popd &> /dev/null