1 /*=========================================================================
3 Program: KWSys - Kitware System Library
4 Module: $RCSfile: testSharedForward.c.in,v $
6 Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
7 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the above copyright notices for more information.
13 =========================================================================*/
14 #if defined(CMAKE_INTDIR)
15 # define CONFIG_DIR_PRE CMAKE_INTDIR "/"
16 # define CONFIG_DIR_POST "/" CMAKE_INTDIR
18 # define CONFIG_DIR_PRE ""
19 # define CONFIG_DIR_POST ""
21 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_DIR_BUILD "@EXEC_DIR@"
22 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_PATH_BUILD "." CONFIG_DIR_POST
23 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_PATH_INSTALL 0
24 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_EXE_BUILD \
25 CONFIG_DIR_PRE "@KWSYS_NAMESPACE@TestProcess"
26 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_EXE_INSTALL \
27 "@KWSYS_NAMESPACE@TestProcess"
28 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_OPTION_COMMAND "--command"
29 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_OPTION_PRINT "--print"
30 #define @KWSYS_NAMESPACE@_SHARED_FORWARD_OPTION_LDD "--ldd"
31 #if defined(CMAKE_INTDIR)
32 # define @KWSYS_NAMESPACE@_SHARED_FORWARD_CONFIG_NAME CMAKE_INTDIR
34 #include <@KWSYS_NAMESPACE@/SharedForward.h>
35 int main(int argc
, char** argv
)
37 return @KWSYS_NAMESPACE@
_shared_forward_to_real(argc
, argv
);