configure.ac: Show SCPI backends that'll be compiled.

This commit is contained in:
Uwe Hermann 2014-09-08 22:58:14 +02:00
parent 62ea3ef552
commit a0ca437de3
1 changed files with 14 additions and 1 deletions

View File

@ -764,7 +764,20 @@ else
fi
fi
echo -e "Enabled language bindings:\n"
echo "Enabled SCPI backends:"
echo " - TCP............................. yes"
if test "x$have_rpc" = "x0"; then
echo " - RPC............................. no"
else
echo " - RPC............................. yes"
fi
echo " - serial.......................... $have_libserialport"
echo " - VISA............................ $have_librevisa"
echo " - GPIB............................ $have_libgpib"
echo " - USBTMC.......................... $have_libusb1_0"
echo
echo "Enabled language bindings:"
echo " - C++............................. $BINDINGS_CXX$final_cxx"
echo " - Python.......................... $BINDINGS_PYTHON$final_python"
echo " - Java............................ $BINDINGS_JAVA$final_java"