#
# $Id: CMakeLists.txt,v 1.1.1.1 2006/12/19 22:58:33 christianh Exp $
#
# The name of our project is "SVV_COMMON".  CMakeLists files in this project can
# refer to the root source directory of the project as ${SVV_COMMON_SOURCE_DIR} 
# and to the root binary directory of the project as ${SVV_COMMON_BINARY_DIR}.
#
PROJECT (SVV_COMMON)

# -----------------------------------------------------------------------------
CONFIGURE_FILE (
  ${SVV_COMMON_SOURCE_DIR}/svvConfiguration.h.in 
  ${SVV_COMMON_BINARY_DIR}/svvConfiguration.h)

# -----------------------------------------------------------------------------
SET ( SVV_COMMON_SRCS
  svvPalette
  svvColorNameMap
  svvController
  svvMaterialNameMap
  svvModelSource
)

# Add the target
ADD_LIBRARY (SvCommon ${SVV_COMMON_SRCS})
TARGET_LINK_LIBRARIES (SvCommon vtkExtensions vtkRendering vtkCommon)

# Add build output and installation paths.
INSTALL_TARGETS (${SVV_EXECUTABLE_DIR} SvCommon)

#
# End of: $Id: CMakeLists.txt,v 1.1.1.1 2006/12/19 22:58:33 christianh Exp $.
#
