CMakeVariables.make.in 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # ***** BEGIN VARIBLES THAT CAN BE OVERRIDDEN IN CMakeLocal.make.in **************
  2. # CMakeLocal.make.in should be in the directory where you run configure
  3. # in, which need not be the source directory
  4. # The following LOCAL_* variables can be overridden in the CMakeLists.txt
  5. # files directly, inside the VERBATIM section. However, that will
  6. # not be used on the windows build, so keep it to unix things.
  7. #
  8. # use this to add targets to the default all
  9. # so they are built when make is run by default
  10. # LOCAL_BUILD_TARGETS =
  11. # use this flag to add -L and -l options to the link line
  12. # LOCAL_LINK_FLAGS =
  13. # use this flag to add -I flags to the compile line
  14. # LOCAL_INCLUDE_FLAGS =
  15. # use this flag to add compiler options like -g -O, etc
  16. # for the "C" compiler, for gcc these default to -g -O2
  17. USER_CFLAGS = @CFLAGS@
  18. # use this flag to add compiler options like -g -O, etc
  19. # for the "C++" compiler, for gcc these default to -g -O2
  20. USER_CXXFLAGS = @CXXFLAGS@
  21. # ***** END VARIBLES THAT CAN BE OVERRIDDEN IN CMakeLocal.make.in **************
  22. # This is the path to the top of the Source tree
  23. topdir = @fullSrcDir@
  24. # This is the directory that contains the source for the CMakeLists.txt file
  25. currentdir = `cd ${srcdir}; pwd`
  26. # This is the directory that contains the output for the CMakeLists.txt file
  27. currentbindir = `pwd`
  28. # This is the directory configure was run in
  29. # where the binaries will be placed
  30. CMAKE_CONFIG_DIR = @CMAKE_CONFIG_DIR@
  31. # the standard shell for make
  32. SHELL = /bin/sh
  33. RANLIB = @RANLIB@
  34. CC = @CC@
  35. CFLAGS = @CMAKE_SHLIB_CFLAGS@ @ANSI_CFLAGS@
  36. CXX = @CXX@
  37. CXXFLAGS = @CMAKE_SHLIB_CFLAGS@ @CMAKE_TEMPLATE_FLAGS@
  38. X_EXTRA_LIBS = @X_EXTRA_LIBS@
  39. X_PRE_LIBS = @X_PRE_LIBS@
  40. XLIBS = @X_LIBS@
  41. prefix = @prefix@
  42. exec_prefix = @exec_prefix@
  43. LIB_RUNTIME_DIR = @exec_prefix@/lib
  44. CMAKE_SHLIB_BUILD_FLAGS = @CMAKE_SHLIB_BUILD_FLAGS@
  45. CMAKE_SHLIB_LINK_FLAGS = @CMAKE_SHLIB_LINK_FLAGS@
  46. DL_LIBS = @CMAKE_DL_LIBS@
  47. SHLIB_LD_LIBS = @CMAKE_SHLIB_LD_LIBS@
  48. SHLIB_SUFFIX = @CMAKE_SHLIB_SUFFIX@
  49. THREAD_LIBS = @CMAKE_THREAD_LIBS@
  50. # install support
  51. #
  52. # The following definition can be set to non-null for special systems
  53. # like AFS with replication. It allows the pathnames used for installation
  54. # to be different than those used for actually reference files at
  55. # run-time. INSTALL_ROOT is prepended to $prefix and $exec_prefix
  56. # when installing files.
  57. INSTALL_ROOT =
  58. INSTALL = @CMAKE_INSTALL@
  59. LIB_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/lib
  60. BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin
  61. # set up the path to the rulesgen program
  62. CMAKE = @CMAKE_CONFIG_DIR@/CMake/Source/CMakeBuildTargets
  63. # C++ compile flags, INCLUDE_FLAGS is set in CMakeTargets.make which
  64. # is generated by CMakeBuildTargets, see CMake/Source
  65. CXX_FLAGS = ${CPPFLAGS} ${USER_CXXFLAGS} ${CXXFLAGS} ${INCLUDE_FLAGS}
  66. # C compile flags, INCLUDE_FLAGS is set in CMakeTargets.make which
  67. # is generated by CMakeBuildTargets, see CMake/Source
  68. CC_FLAGS = ${CPPFLAGS} ${USER_CFLAGS} ${CFLAGS} ${INCLUDE_FLAGS}