1/*=========================================================================
2
3Program:   VTK
4Module:    vtk-forward.c.in
5
6Copyright (c) Kitware, Inc.
7All rights reserved.
8See Copyright.txt or http://www.vtk.org/HTML/Copyright.html for details.
9
10This software is distributed WITHOUT ANY WARRANTY; without even
11the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12PURPOSE.  See the above copyright notice for more information.
13
14=========================================================================*/
15
16#define vtksys_SHARED_FORWARD_DIR_BUILD "@VTK_FORWARD_DIR_BUILD@"
17#define vtksys_SHARED_FORWARD_PATH_BUILD @VTK_FORWARD_PATH_BUILD@
18#define vtksys_SHARED_FORWARD_PATH_INSTALL @VTK_FORWARD_PATH_INSTALL@
19#define vtksys_SHARED_FORWARD_EXE_BUILD "@VTK_FORWARD_DIR_BUILD@/@VTK_FORWARD_EXE@"
20#define vtksys_SHARED_FORWARD_EXE_INSTALL "@VTK_FORWARD_DIR_INSTALL@/@VTK_FORWARD_EXE@"
21#define vtksys_SHARED_FORWARD_OPTION_PRINT "--print"
22#define vtksys_SHARED_FORWARD_OPTION_LDD "--ldd"
23
24#include <vtksys/SharedForward.h>
25
26int main(int argc, char** argv)
27{
28  return vtksys_shared_forward_to_real(argc, argv);
29}
30