mirror of https://github.com/BOINC/boinc.git
17 lines
428 B
Bash
Executable File
17 lines
428 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -d "linux" ]; then
|
|
echo "start this script in the source root directory"
|
|
exit 1
|
|
fi
|
|
|
|
BUILD_DIR="$PWD/3rdParty/linux"
|
|
VCPKG_ROOT="$BUILD_DIR/vcpkg"
|
|
export VCPKG_DIR="$VCPKG_ROOT/installed/x64-linux"
|
|
|
|
linux/update_vcpkg_libs.sh
|
|
|
|
export _libcurl_pc="$VCPKG_DIR/lib/pkgconfig/libcurl.pc"
|
|
./configure --with-libcurl=$VCPKG_DIR --with-ssl=$VCPKG_DIR --disable-server --disable-client --disable-manager
|