mirror of
https://github.com/amnezia-vpn/OpenVPNAdapter.git
synced 2026-06-16 15:22:51 +03:00
10 lines
289 B
Bash
10 lines
289 B
Bash
if [ "$1" = "args" ]; then
|
|
echo " JSON=1 -- build with JsonCpp library"
|
|
elif [ "$1" = "deps" ]; then
|
|
# JsonCpp
|
|
if [ "$JSON" = "1" ]; then
|
|
CPPFLAGS="$CPPFLAGS $(pkg-config --cflags jsoncpp) -DHAVE_JSONCPP"
|
|
EXTRA_SRC_OBJ="$EXTRA_SRC_OBJ $(pkg-config --libs jsoncpp)"
|
|
fi
|
|
fi
|