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

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