Skip to content
Snippets Groups Projects
Commit 4c2a5ab5 authored by Alexander Pace's avatar Alexander Pace
Browse files

Added --with-webdir=... functionality to install web visualization from gstlal-ugly

parent c4792121
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ AC_CONFIG_FILES([ \
debian/Makefile \
python/Makefile \
share/Makefile \
share/vis/Makefile \
gst/Makefile \
gst/nds/Makefile \
gst/lal/Makefile \
......@@ -470,6 +471,29 @@ AC_DEFINE([HAVE_CUDA], [test "x${HAVE_CUDA}" == "xyes"], [Defined if you have cu
AM_CONDITIONAL([COND_CUDA], [test "x${HAVE_CUDA}" == "xyes"])
#
# Check for webdir, this enables installation of web visualation tools
#
AC_ARG_WITH(
[webdir],
[AS_HELP_STRING([--with-webdir], [specify location of directory for web visualization tools. [$HOME/public_html]])],
[],
[with_webdir=no]
)
AS_IF([test "x$with_webdir" != "xno"], [
AC_MSG_WARN([copying web visualization tools to $with_webdir])
#AC_DEFINE([WEBDEST],"x$with_webdir", [Defined as the destination for web visualization tool.])
AC_SUBST([WEBDEST],["$with_webdir"])
HAVE_WEBDIR="yes"
],[
AC_MSG_WARN([disabling installation of web visualization tools])
HAVE_WEBDIR="no"
])
AC_DEFINE([HAVE_WEBDIR], [test "x{HAVE_WEBDIR}" == "xyes"], [Defined if you are enabling web visualiation])
AM_CONDITIONAL([COND_WEBDIR], [test "x${HAVE_WEBDIR}" == "xyes"])
#
# Output configure information
#
......
......@@ -2,3 +2,11 @@ dist_pkgdata_DATA = \
Makefile.recolor_frames \
virgo_online_psd.xml.gz \
ZERO_DET_high_P.txt
if COND_WEBDIR
WEBDIR_SUBDIRS = vis
else
WEBDIR_SUBDIRS =
endif
SUBDIRS = $(WEBDIR_SUBDIRS)
#
# This folder contains a couple javascript and cgi scripts, which just get copied
# to the $WEBDIR directory. I'm going to separate them into two categories, ones
# that get copied to $WEBDIR and ones that get copied to $WEBDIR/cgi-bin
#
webvisdir = $(WEBDEST)
webviscgidir = ${webvisdir}/cgi-bin
webvis_SCRIPTS = \
gstlal.css \
gstlal.html \
gstlal.js \
gstlal.png \
jquery-3.1.1.min.js
webviscgi_SCRIPTS = \
gstlal
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment