testSharedForward.c.in 1.2 KB

123456789101112131415161718192021222324252627
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing#kwsys for details. */
  3. #if defined(CMAKE_INTDIR)
  4. #define CONFIG_DIR_PRE CMAKE_INTDIR "/"
  5. #define CONFIG_DIR_POST "/" CMAKE_INTDIR
  6. #else
  7. #define CONFIG_DIR_PRE ""
  8. #define CONFIG_DIR_POST ""
  9. #endif
  10. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_DIR_BUILD "@EXEC_DIR@"
  11. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_PATH_BUILD "." CONFIG_DIR_POST
  12. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_PATH_INSTALL 0
  13. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_EXE_BUILD \
  14. CONFIG_DIR_PRE "@KWSYS_NAMESPACE@TestProcess"
  15. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_EXE_INSTALL \
  16. "@KWSYS_NAMESPACE@TestProcess"
  17. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_OPTION_COMMAND "--command"
  18. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_OPTION_PRINT "--print"
  19. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_OPTION_LDD "--ldd"
  20. #if defined(CMAKE_INTDIR)
  21. #define @KWSYS_NAMESPACE@_SHARED_FORWARD_CONFIG_NAME CMAKE_INTDIR
  22. #endif
  23. #include <@KWSYS_NAMESPACE@/SharedForward.h>
  24. int main(int argc, char** argv)
  25. {
  26. return @KWSYS_NAMESPACE@_shared_forward_to_real(argc, argv);
  27. }