Advertisement
Guest User

CONFIG_SITE.local

a guest
Feb 14th, 2017
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. # To build the IOC applications set BUILD_IOCS to YES
  2. # Otherwise set it to NO
  3. BUILD_IOCS=YES
  4.  
  5. # To build areaDetector so that it only depends on libCom and asyn set the following flag
  6. #EPICS_LIBCOM_ONLY=YES
  7.  
  8. # Configure which 3rd party libraries to use and where to find them.
  9. # For each library XXX the following definitions are used:
  10. # WITH_XXX Build the plugins and drivers that require this library.
  11. # Build the source code for this library in ADSupport if XXX_EXTERNAL=NO.
  12. # XXX_EXTERNAL If NO then build the source code for this library in ADSupport.
  13. # XXX_INCLUDE If XXX_EXTERNAL=YES then this is the path to the include files for XXX.
  14. # However, if XXX is a system library whose include files are in a
  15. # standard include search path then do not define XXX_INCLUDE.
  16. # XXX_LIB If XXX_EXTERNAL=YES then this is the path to the library files for XXX.
  17. # However, if XXX is a system library whose library files in a
  18. # standard library search path then do not define XXX_LIB.
  19.  
  20. # The default defined here is appropriate for most Linux systems.
  21.  
  22. # BOOST is required for the ADCore/pluginTests unit tests
  23. WITH_BOOST = NO
  24. #BOOST_LIB =
  25. #BOOST_INCLUDE =
  26.  
  27. # EPICS_V4 is required for NDPluginPva and pvaDriver
  28. WITH_EPICS_V4 = NO
  29.  
  30. # GraphicsMagick is required for NDFileMagick and the URL driver.
  31. WITH_GRAPHICSMAGICK = NO
  32. GRAPHICSMAGICK_EXTERNAL = NO
  33. #GRAPHICSMAGICK_INCLUDE =
  34. #GRAPHICSMAGICK_LIB =
  35.  
  36. # HDF5 is required for the NDFileHDF5 and NDFileNexus plugins
  37. WITH_HDF5 = NO
  38. HDF5_EXTERNAL = NO
  39. #HDF5_INCLUDE =
  40. #HDF5_LIB =
  41.  
  42. # JPEG is required for the NDFileJPEG and NDFileTIFF plugins
  43. WITH_JPEG = YES
  44. JPEG_EXTERNAL = YES
  45. #JPEG_INCLUDE =
  46. #JPEG_LIB =
  47.  
  48. # JPEG is required for the NDFileNetCDF plugin
  49. WITH_NETCDF = NO
  50. NETCDF_EXTERNAL = NO
  51. #NETCDF_INCLUDE =
  52. #NETCDF_LIB =
  53.  
  54. # NEXUS is required for the NDFileNexus plugin
  55. WITH_NEXUS = NO
  56. NEXUS_EXTERNAL = NO
  57. #NEXUS_INCLUDE =
  58. #NEXUS_LIB =
  59.  
  60. # OPENCV is required for the ADPluginEdge plugin
  61. WITH_OPENCV = NO
  62. OPENCV_EXTERNAL = NO
  63. #OPENCV_INCLUDE =
  64. #OPENCV_LIB =
  65.  
  66. # SZIP is required for the NDFileHDF5 and NDFileNexus plugins.
  67. # This may be optional in the future.
  68. WITH_SZIP = NO
  69. SZIP_EXTERNAL = NO
  70. #SZIP_INCLUDE =
  71. #SZIP_LIB =
  72.  
  73. # TIFF is required for the NDFileTIFF plugin.
  74. WITH_TIFF = NO
  75. TIFF_EXTERNAL = NO
  76. #TIFF_INCLUDE =
  77. #TIFF_LIB =
  78.  
  79. # XML2 is required for the NDFileHDF5 and NDFileNexus plugins.
  80. WITH_XML2 = NO
  81. XML2_EXTERNAL = NO
  82. #XML2_INCLUDE =
  83. #XML2_LIB =
  84.  
  85. # ZLIB is required for the NDFileHDF5 and NDFileNexus plugins.
  86. # This may be optional in the future.
  87. WITH_ZLIB = NO
  88. ZLIB_EXTERNAL = NO
  89. #ZLIB_INCLUDE =
  90. #ZLIB_LIB =
  91.  
  92. # The definitions above can be overridden in the following files.
  93. # The files are searched in this order, with the last definition being used.
  94. # CONFIG_SITE.local.$(OS_CLASS)
  95. # CONFIG_SITE.local.$(EPICS_HOST_ARCH)
  96. # CONFIG_SITE.local.$(EPICS_HOST_ARCH).$(T_A)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement