# -----------------------------------------------------------------------
+# Checking for unit testing framework Criterion
+# This framework is used for the unit tests
+AC_CHECK_LIB(
+ criterion,
+ main,
+ [
+ use_criterion="Yes"
+ AC_DEFINE_UNQUOTED(HAVE_CRITERION,1,[Criterion unit testing framework is installed and available for use.])
+ ],
+ [
+ use_criterion="No (Criterion unit testing framework not installed)"
+ AC_MSG_WARN(Criterion unit testing framework not installed)
+ ],
+ []
+)
+AM_CONDITIONAL(HAVE_CRITERION, test $use_criterion = "Yes")
+
+# -----------------------------------------------------------------------
+
# Generate Makefiles
AC_CONFIG_FILES(Makefile
debian/changelog
echo " tcldot: $use_tcldot"
echo " tclpathplan: $use_tclpathplan"
echo " gdtclft: $use_gdtclft"
-
+echo ""
+echo "Testing utilities:"
+echo " criterion: $use_criterion"