# Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
# All rights reserved.
# See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
#
#    This software is distributed WITHOUT ANY WARRANTY; without even
#    the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
#    PURPOSE.  See the above copyright notice for more information.
#
vtk_module_export_info()

# This executable is only run from the build tree so we do not need a
# launcher for it and should always use the RPATH to find shared libs.
SET(CMAKE_SKIP_RPATH 0)

IF(NOT VTK_COMPILE_TOOLS_IMPORTED)
  ADD_EXECUTABLE(vtkHashSource vtkHashSource.cxx)
  TARGET_LINK_LIBRARIES(vtkHashSource vtksys)
  vtk_compile_tools_target(vtkHashSource)
ENDIF()
