Changeset 4212


Ignore:
Timestamp:
Mar 10, 2014 10:46:24 AM (10 years ago)
Author:
ldelgass
Message:

More fixes for VTK build settings

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r4209 r4212  
    195195VTK_TCL_DIR=""
    196196
    197 ENABLE_VTK=no
     197ENABLE_VTK=
    198198if test "$with_vtk" != "no" ; then
    199199  if test "$with_vtk" != "yes" ; then
     
    221221else
    222222  if test "${ENABLE_GUI}" = "yes" ; then
    223     AC_MSG_ERROR([Rappture GUI requires VTK])
     223    AC_MSG_WARN([VTK missing: Rappture GUI requires VTK for some features])
    224224  fi
    225225fi
  • trunk/gui/src/Makefile.in

    r4211 r4212  
    4141
    4242INCLUDES        = -I$(srcdir) \
    43                   -I$(includedir) \
    44                   -I$(includedir)/vtk-$(VTK_VERSION)
     43                  -I$(includedir)
    4544version         = @PACKAGE_VERSION@
    4645DEFINES         = -DPACKAGE_VERSION=\"$(version)\"
     
    6867
    6968ifeq ($(ENABLE_VTK),yes)
     69  INCLUDES += -I$(includedir)/vtk-$(VTK_VERSION)
    7070  OBJS += RpDicomToVtk.o
    7171  VTK_LIB_SPEC += -lvtkIOCore-$(VTK_VERSION) -lvtkIOLegacy-$(VTK_VERSION) -lvtkIOImage-$(VTK_VERSION) -lvtkCommonCore-$(VTK_VERSION)
Note: See TracChangeset for help on using the changeset viewer.