Browse Source

ENH: some style fixes for the book

Ken Martin 20 years ago
parent
commit
d2689c95a1

+ 1 - 1
Modules/CMakeBackwardCompatibilityCXX.cmake

@@ -1,4 +1,4 @@
-# - define a bunch of backwards compatibility varibles
+# - define a bunch of backwards compatibility variables
 #  CMAKE_ANSI_CXXFLAGS - flag for ansi c++ 
 #  CMAKE_ANSI_CXXFLAGS - flag for ansi c++ 
 #  CMAKE_HAS_ANSI_STRING_STREAM - has <strstream>
 #  CMAKE_HAS_ANSI_STRING_STREAM - has <strstream>
 #  INCLUDE(TestForANSIStreamHeaders)
 #  INCLUDE(TestForANSIStreamHeaders)

+ 2 - 2
Modules/CMakeExportBuildSettings.cmake

@@ -1,6 +1,6 @@
 # - export build settings from a project.
 # - export build settings from a project.
-# CMAKE_EXPORT_BUILD_SETTINGS(SETTINGS_FILE) - macro defined to export the build 
-# settings for use by another project.
+#  CMAKE_EXPORT_BUILD_SETTINGS(SETTINGS_FILE)
+# macro defined to export the build settings for use by another project.
 #  SETTINGS_FILE - the file into which the settings are to be stored.
 #  SETTINGS_FILE - the file into which the settings are to be stored.
 MACRO(CMAKE_EXPORT_BUILD_SETTINGS SETTINGS_FILE)
 MACRO(CMAKE_EXPORT_BUILD_SETTINGS SETTINGS_FILE)
   IF(${SETTINGS_FILE} MATCHES ".+")
   IF(${SETTINGS_FILE} MATCHES ".+")

+ 4 - 4
Modules/CMakeImportBuildSettings.cmake

@@ -1,8 +1,8 @@
 # - import build settings from another project
 # - import build settings from another project
-# CMAKE_IMPORT_BUILD_SETTINGS(SETTINGS_FILE) - macro defined to import the 
-# build settings from another project.  
-#  SETTINGS_FILE - a file created by the other project's call to the
-#  CMAKE_EXPORT_BUILD_SETTINGS macro, see CMakeExportBuildSettings.
+#  CMAKE_IMPORT_BUILD_SETTINGS(SETTINGS_FILE) 
+# macro defined to import the build settings from another project.  
+# SETTINGS_FILE is a file created by the other project's call to the
+# CMAKE_EXPORT_BUILD_SETTINGS macro, see CMakeExportBuildSettings.
 MACRO(CMAKE_IMPORT_BUILD_SETTINGS SETTINGS_FILE)
 MACRO(CMAKE_IMPORT_BUILD_SETTINGS SETTINGS_FILE)
   IF(${SETTINGS_FILE} MATCHES ".+")
   IF(${SETTINGS_FILE} MATCHES ".+")
     # Load the settings.
     # Load the settings.

+ 3 - 3
Modules/CheckCXXSourceCompiles.cmake

@@ -1,11 +1,11 @@
 # - Check if the source code provided in the SOURCE argument compiles.
 # - Check if the source code provided in the SOURCE argument compiles.
 # CHECK_CXX_SOURCE_COMPILES(SOURCE VAR)
 # CHECK_CXX_SOURCE_COMPILES(SOURCE VAR)
 # - macro which checks if the source code compiles\
 # - macro which checks if the source code compiles\
-#  SOURCE   - source code to try to compile
-#  VAR - variable to store size if the type exists.
+#  SOURCE - source code to try to compile
+#  VAR    - variable to store size if the type exists.
 # Checks the following optional VARIABLES (not arguments)
 # Checks the following optional VARIABLES (not arguments)
 #  CMAKE_REQUIRED_LIBRARIES - Link to extra libraries
 #  CMAKE_REQUIRED_LIBRARIES - Link to extra libraries
-#  CMAKE_REQUIRED_FLAGS - Extra flags to C compiler
+#  CMAKE_REQUIRED_FLAGS     - Extra flags to C compiler
 #
 #
 
 
 MACRO(CHECK_CXX_SOURCE_COMPILES SOURCE VAR)
 MACRO(CHECK_CXX_SOURCE_COMPILES SOURCE VAR)

+ 1 - 1
Modules/CheckIncludeFile.cmake

@@ -1,7 +1,7 @@
 # - Check if the include file exists.
 # - Check if the include file exists.
 # CHECK_INCLUDE_FILE(INCLUDE VARIABLE)
 # CHECK_INCLUDE_FILE(INCLUDE VARIABLE)
 # - macro which checks the include file exists.
 # - macro which checks the include file exists.
-#  INCLUDE - name of include file
+#  INCLUDE  - name of include file
 #  VARIABLE - variable to return result
 #  VARIABLE - variable to return result
 #   
 #   
 # an optional third argument is the CFlags to add to the compile line 
 # an optional third argument is the CFlags to add to the compile line 

+ 3 - 2
Modules/CheckIncludeFileCXX.cmake

@@ -1,6 +1,7 @@
 # - Check if the include file exists.
 # - Check if the include file exists.
-#  CHECK_INCLUDE_FILE_CXX(INCLUDE VARIABLE) - macro which checks the include file exists.
-#  INCLUDE - name of include file
+#  CHECK_INCLUDE_FILE_CXX(INCLUDE VARIABLE)
+#
+#  INCLUDE  - name of include file
 #  VARIABLE - variable to return result
 #  VARIABLE - variable to return result
 #  
 #  
 # An optional third argument is the CFlags to add to the compile line 
 # An optional third argument is the CFlags to add to the compile line 

+ 2 - 2
Modules/CheckIncludeFiles.cmake

@@ -1,8 +1,8 @@
 # - Check if the files can be included
 # - Check if the files can be included
 #
 #
 # CHECK_INCLUDE_FILES(INCLUDE VARIABLE)
 # CHECK_INCLUDE_FILES(INCLUDE VARIABLE)
-# - macro which checks the include file exists.
-#  INCLUDE - list of files to include
+#
+#  INCLUDE  - list of files to include
 #  VARIABLE - variable to return result
 #  VARIABLE - variable to return result
 #   
 #   
 # If CMAKE_REQUIRED_FLAGS is set then those flags will be passed into the
 # If CMAKE_REQUIRED_FLAGS is set then those flags will be passed into the

+ 2 - 2
Modules/CheckLibraryExists.cmake

@@ -1,7 +1,7 @@
 # - Check if the function exists.
 # - Check if the function exists.
 # CHECK_LIBRARY_EXISTS (LIBRARY FUNCTION LOCATION VARIABLE)
 # CHECK_LIBRARY_EXISTS (LIBRARY FUNCTION LOCATION VARIABLE)
-# - macro which checks if the function exists
-#  LIBRARY - the name of the library you are looking for
+#
+#  LIBRARY  - the name of the library you are looking for
 #  FUNCTION - the name of the function
 #  FUNCTION - the name of the function
 #  LOCATION - location where the library should be found
 #  LOCATION - location where the library should be found
 #  VARIABLE - variable to store the result
 #  VARIABLE - variable to store the result

+ 3 - 3
Modules/CheckSymbolExists.cmake

@@ -1,8 +1,8 @@
 # - Check if the symbol exists in include files
 # - Check if the symbol exists in include files
 # CHECK_SYMBOL_EXISTS(SYMBOL FILES VARIABLE)
 # CHECK_SYMBOL_EXISTS(SYMBOL FILES VARIABLE)
-# - macro which checks the symbol exists in include files.
-#  SYMBOL - symbol
-#  FILES  - include files to check
+#
+#  SYMBOL   - symbol
+#  FILES    - include files to check
 #  VARIABLE - variable to return result
 #  VARIABLE - variable to return result
 #  
 #  
 # If CMAKE_REQUIRED_FLAGS is set then those flags will be passed into the
 # If CMAKE_REQUIRED_FLAGS is set then those flags will be passed into the

+ 1 - 1
Modules/CheckTypeSize.cmake

@@ -1,5 +1,5 @@
 # - Check sizeof a type
 # - Check sizeof a type
-# CHECK_TYPE_SIZE(TYPE VARIABLE)
+#  CHECK_TYPE_SIZE(TYPE VARIABLE)
 # Check if the type exists and determine size of type.  if the type
 # Check if the type exists and determine size of type.  if the type
 # exists, the size will be stored to the variable.
 # exists, the size will be stored to the variable.
 #
 #

+ 3 - 3
Modules/CheckVariableExists.cmake

@@ -1,7 +1,7 @@
 # - Check if the variable exists.
 # - Check if the variable exists.
-# CHECK_VARIABLE_EXISTS(VAR VARIABLE)
-# - macro which checks if the variable exists
-#  VAR - the name of the variable
+#  CHECK_VARIABLE_EXISTS(VAR VARIABLE)
+#  
+#  VAR      - the name of the variable
 #  VARIABLE - variable to store the result
 #  VARIABLE - variable to store the result
 # If CMAKE_REQUIRED_FLAGS is set then those flags will be passed into the
 # If CMAKE_REQUIRED_FLAGS is set then those flags will be passed into the
 # compile of the program likewise if CMAKE_REQUIRED_LIBRARIES is set then
 # compile of the program likewise if CMAKE_REQUIRED_LIBRARIES is set then

+ 5 - 4
Modules/FindAVIFile.cmake

@@ -1,12 +1,13 @@
 # - Locate AVIFILE library and include paths
 # - Locate AVIFILE library and include paths
-# AVIFILE (http://avifile.sourceforge.net/)is a set of library for i386 machines
+# AVIFILE (http://avifile.sourceforge.net/)is a set of libraries for 
+# i386 machines
 # to use various AVI codecs. Support is limited beyond Linux. Windows
 # to use various AVI codecs. Support is limited beyond Linux. Windows
 # provides native AVI support, and so doesn't need this library.
 # provides native AVI support, and so doesn't need this library.
 # This module defines
 # This module defines
 #  AVIFILE_INCLUDE_DIR, where to find avifile.h , etc.
 #  AVIFILE_INCLUDE_DIR, where to find avifile.h , etc.
-#  AVIFILE_LIBRARIES, the libraries to link against to use AVIFILE
-#  AVIFILE_DEFINITIONS, definitions to use when compiling code that uses AVIFILE.
-#  AVIFILE_FOUND, If false, don't try to use AVIFILE.
+#  AVIFILE_LIBRARIES, the libraries to link against
+#  AVIFILE_DEFINITIONS, definitions to use when compiling
+#  AVIFILE_FOUND, If false, don't try to use AVIFILE
 
 
 IF (UNIX)
 IF (UNIX)
 
 

+ 5 - 3
Modules/FindCABLE.cmake

@@ -1,9 +1,11 @@
 # - Find CABLE
 # - Find CABLE
 # This module finds if CABLE is installed and determines where the
 # This module finds if CABLE is installed and determines where the
 # include files and libraries are.  This code sets the following variables:
 # include files and libraries are.  This code sets the following variables:
-#  CABLE              = the full path to the cable executable
-#  CABLE_TCL_LIBRARY  = the full path to the Tcl wrapper facility library
-#  CABLE_INCLUDE_DIR  = the full path to the cable include directory
+#
+#  CABLE             the path to the cable executable
+#  CABLE_TCL_LIBRARY the path to the Tcl wrapper library
+#  CABLE_INCLUDE_DIR the path to the include directory
+#
 # To build Tcl wrappers, you should add shared library and link it to
 # To build Tcl wrappers, you should add shared library and link it to
 # ${CABLE_TCL_LIBRARY}.  You should also add ${CABLE_INCLUDE_DIR} as
 # ${CABLE_TCL_LIBRARY}.  You should also add ${CABLE_INCLUDE_DIR} as
 # an include directory.
 # an include directory.

+ 5 - 5
Modules/FindFLTK.cmake

@@ -1,15 +1,15 @@
 # - Find the native FLTK includes and library
 # - Find the native FLTK includes and library
 # The following settings are defined
 # The following settings are defined
 #  FLTK_FLUID_EXECUTABLE, where to find the Fluid tool
 #  FLTK_FLUID_EXECUTABLE, where to find the Fluid tool
-#  FLTK_WRAP_UI, This allows the FLTK_WRAP_UI command to work.
+#  FLTK_WRAP_UI, This enables the FLTK_WRAP_UI command
 #  FLTK_INCLUDE_DIR, where to find include files
 #  FLTK_INCLUDE_DIR, where to find include files
 #  FLTK_LIBRARIES, list of fltk libraries
 #  FLTK_LIBRARIES, list of fltk libraries
 #  FLTK_FOUND, Don't use FLTK if false.
 #  FLTK_FOUND, Don't use FLTK if false.
 # The following settings should not be used in general.
 # The following settings should not be used in general.
-#  FLTK_BASE_LIBRARY    = the full path to fltk.lib
-#  FLTK_GL_LIBRARY      = the full path to fltk_gl.lib
-#  FLTK_FORMS_LIBRARY   = the full path to fltk_forms.lib
-#  FLTK_IMAGES_LIBRARY  = the full path to fltk_images.lib
+#  FLTK_BASE_LIBRARY   = the full path to fltk.lib
+#  FLTK_GL_LIBRARY     = the full path to fltk_gl.lib
+#  FLTK_FORMS_LIBRARY  = the full path to fltk_forms.lib
+#  FLTK_IMAGES_LIBRARY = the full path to fltk_images.lib
 
 
 #  Platform dependent libraries required by FLTK
 #  Platform dependent libraries required by FLTK
 IF(WIN32)
 IF(WIN32)

+ 1 - 1
Modules/FindGLUT.cmake

@@ -1,6 +1,6 @@
 # - try to find glut library and include files
 # - try to find glut library and include files
 #  GLUT_INCLUDE_DIR, where to find GL/glut.h, etc.
 #  GLUT_INCLUDE_DIR, where to find GL/glut.h, etc.
-#  GLUT_LIBRARIES, the libraries to link against to use GLUT.
+#  GLUT_LIBRARIES, the libraries to link against
 #  GLUT_FOUND, If false, do not try to use GLUT.
 #  GLUT_FOUND, If false, do not try to use GLUT.
 # Also defined, but not for general use are:
 # Also defined, but not for general use are:
 #  GLUT_glut_LIBRARY = the full path to the glut library.
 #  GLUT_glut_LIBRARY = the full path to the glut library.

+ 2 - 2
Modules/FindGTK.cmake

@@ -1,8 +1,8 @@
 # - try to find GTK (and glib) and GTKGLArea
 # - try to find GTK (and glib) and GTKGLArea
 #  GTK_INCLUDE_DIR   - Directories to include to use GTK
 #  GTK_INCLUDE_DIR   - Directories to include to use GTK
 #  GTK_LIBRARIES     - Files to link against to use GTK
 #  GTK_LIBRARIES     - Files to link against to use GTK
-#  GTK_FOUND         - If false, don't try to use GTK
-#  GTK_GL_FOUND      - If false, don't try to use GTK's GL features
+#  GTK_FOUND         - GTK was found
+#  GTK_GL_FOUND      - GTK's GL features were found
 
 
 # don't even bother under WIN32
 # don't even bother under WIN32
 IF(UNIX)
 IF(UNIX)

+ 3 - 3
Modules/FindHTMLHelp.cmake

@@ -1,8 +1,8 @@
 # - This module looks for Microsoft HTML Help Compiler
 # - This module looks for Microsoft HTML Help Compiler
 # It defines:
 # It defines:
-#   HTML_HELP_COMPILER - path to the HTML Help Compiler (hhc.exe)
-#   HTML_HELP_INCLUDE_PATH - include path for HTML Help API (htmlhelp.h)
-#   HTML_HELP_LIBRARY - path to the HTML Help library (htmlhelp.lib)
+#   HTML_HELP_COMPILER - path to the Compiler hhc.exe
+#   HTML_HELP_INCLUDE_PATH - include path for htmlhelp.h
+#   HTML_HELP_LIBRARY - path to the library htmlhelp.lib
 #
 #
 
 
 IF (WIN32)
 IF (WIN32)

+ 14 - 14
Modules/FindITK.cmake

@@ -1,24 +1,24 @@
 # - Find an ITK installation or build tree.
 # - Find an ITK installation or build tree.
+
 # When ITK is found, the ITKConfig.cmake file is sourced to setup the
 # When ITK is found, the ITKConfig.cmake file is sourced to setup the
 # location and configuration of ITK.  Please read this file, or
 # location and configuration of ITK.  Please read this file, or
 # ITKConfig.cmake.in from the ITK source tree for the full list of
 # ITKConfig.cmake.in from the ITK source tree for the full list of
-# definitions.  Of particular interest is
-#   
-#  ITK_USE_FILE  - A CMake source file that can be included
-#                  to set the include directories, library
-#                  directories, and preprocessor macros.
-# In addition to the variables read from ITKConfig.cmake, this find
-# module also defines
-#  ITK_DIR  - The directory containing ITKConfig.cmake.  This is 
-#             either the root of the build tree, or the 
-#             lib/InsightToolkit directory.  This is the only 
-#             cache entry.
+# definitions.  Of particular interest is ITK_USE_FILE, a CMake source file
+# that can be included to set the include directories, library directories,
+# and preprocessor macros.  In addition to the variables read from
+# ITKConfig.cmake, this find module also defines
+#  ITK_DIR  - The directory containing ITKConfig.cmake.  
+#             This is either the root of the build tree, 
+#             or the lib/InsightToolkit directory.  
+#             This is the only cache entry.
 #   
 #   
-#  ITK_FOUND - Whether ITK was found.  If this is true, ITK_DIR is okay.
+#  ITK_FOUND - Whether ITK was found.  If this is true, 
+#              ITK_DIR is okay.
 #
 #
 #  USE_ITK_FILE - The full path to the UseITK.cmake file.  
 #  USE_ITK_FILE - The full path to the UseITK.cmake file.  
-#                 This is provided for backward compatability.  
-#                 Use ITK_USE_FILE instead.
+#                 This is provided for backward 
+#                 compatability.  Use ITK_USE_FILE
+#                 instead.
 
 
 
 
 SET(ITK_DIR_STRING "directory containing ITKConfig.cmake.  This is either the root of the build tree, or PREFIX/lib/InsightToolkit for an installation.")
 SET(ITK_DIR_STRING "directory containing ITKConfig.cmake.  This is either the root of the build tree, or PREFIX/lib/InsightToolkit for an installation.")

+ 10 - 5
Modules/FindImageMagick.cmake

@@ -2,11 +2,16 @@
 # This module finds if ImageMagick tools are installed and determines 
 # This module finds if ImageMagick tools are installed and determines 
 # where the executables are. This code sets the following variables:
 # where the executables are. This code sets the following variables:
 #
 #
-#  IMAGEMAGICK_CONVERT_EXECUTABLE   = the full path to the 'convert' utility 
-#  IMAGEMAGICK_MOGRIFY_EXECUTABLE   = the full path to the 'mogrify' utility 
-#  IMAGEMAGICK_IMPORT_EXECUTABLE    = the full path to the 'import'  utility 
-#  IMAGEMAGICK_MONTAGE_EXECUTABLE   = the full path to the 'montage' utility 
-#  IMAGEMAGICK_COMPOSITE_EXECUTABLE = the full path to the 'composite' utility 
+#  IMAGEMAGICK_CONVERT_EXECUTABLE   = 
+#     the full path to the 'convert' utility 
+#  IMAGEMAGICK_MOGRIFY_EXECUTABLE   = 
+#     the full path to the 'mogrify' utility 
+#  IMAGEMAGICK_IMPORT_EXECUTABLE    = 
+#     the full path to the 'import'  utility 
+#  IMAGEMAGICK_MONTAGE_EXECUTABLE   = 
+#     the full path to the 'montage' utility 
+#  IMAGEMAGICK_COMPOSITE_EXECUTABLE = 
+#     the full path to the 'composite' utility 
 #
 #
 
 
 IF (WIN32)
 IF (WIN32)

+ 3 - 3
Modules/FindJNI.cmake

@@ -3,9 +3,9 @@
 # include files and libraries are. It also determines what the name of
 # include files and libraries are. It also determines what the name of
 # the library is. This code sets the following variables:
 # the library is. This code sets the following variables:
 #   
 #   
-#  JAVA_AWT_LIB_PATH     = the path to where the jawt library is
-#  JAVA_INCLUDE_PATH     = the path to where jni.h can be found
-#  JAVA_AWT_INCLUDE_PATH = the path to where jawt.h can be found
+#  JAVA_AWT_LIB_PATH     = the path to the jawt library
+#  JAVA_INCLUDE_PATH     = the include path to jni.h
+#  JAVA_AWT_INCLUDE_PATH = the include path to jawt.h
 # 
 # 
 
 
 SET(JAVA_AWT_LIBRARY_DIRECTORIES
 SET(JAVA_AWT_LIBRARY_DIRECTORIES

+ 1 - 1
Modules/FindJPEG.cmake

@@ -2,7 +2,7 @@
 # Find the native JPEG includes and library
 # Find the native JPEG includes and library
 # This module defines
 # This module defines
 #  JPEG_INCLUDE_DIR, where to find jpeglib.h, etc.
 #  JPEG_INCLUDE_DIR, where to find jpeglib.h, etc.
-#  JPEG_LIBRARIES, the libraries to link against to use JPEG.
+#  JPEG_LIBRARIES, the libraries needed to use JPEG.
 #  JPEG_FOUND, If false, do not try to use JPEG.
 #  JPEG_FOUND, If false, do not try to use JPEG.
 # also defined, but not for general use are
 # also defined, but not for general use are
 #  JPEG_LIBRARY, where to find the JPEG library.
 #  JPEG_LIBRARY, where to find the JPEG library.

+ 3 - 3
Modules/FindJava.cmake

@@ -3,9 +3,9 @@
 # include files and libraries are. This code sets the following
 # include files and libraries are. This code sets the following
 # variables:
 # variables:
 #
 #
-#  JAVA_RUNTIME        = the full path to the Java runtime
-#  JAVA_COMPILE        = the full path to the Java compiler
-#  JAVA_ARCHIVE        = the full path to the Java archiver
+#  JAVA_RUNTIME    = the full path to the Java runtime
+#  JAVA_COMPILE    = the full path to the Java compiler
+#  JAVA_ARCHIVE    = the full path to the Java archiver
 #
 #
 SET(JAVA_BIN_PATH
 SET(JAVA_BIN_PATH
     "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\2.0;JavaHome]/bin"
     "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\2.0;JavaHome]/bin"

+ 7 - 7
Modules/FindLATEX.cmake

@@ -2,13 +2,13 @@
 # This module finds if Latex is installed and determines where the
 # This module finds if Latex is installed and determines where the
 # executables are. This code sets the following variables:
 # executables are. This code sets the following variables:
 #  
 #  
-#  LATEX_COMPILER        = the full path to the LaTeX compiler
-#  PDFLATEX_COMPILER     = the full path to the PdfLaTeX compiler
-#  BIBTEX_COMPILER       = the full path to the BibTeX compiler
-#  MAKEINDEX_COMPILER    = the full path to the MakeIndex compiler
-#  DVIPS_CONVERTER       = the full path to the DVIPS converter
-#  PS2PDF_CONVERTER      = the full path to the PS2PDF converter
-#  LATEX2HTML_CONVERTER  = the full path to the LaTeX2Html converter 
+#  LATEX_COMPILER:       path to the LaTeX compiler
+#  PDFLATEX_COMPILER:    path to the PdfLaTeX compiler
+#  BIBTEX_COMPILER:      path to the BibTeX compiler
+#  MAKEINDEX_COMPILER:   path to the MakeIndex compiler
+#  DVIPS_CONVERTER:      path to the DVIPS converter
+#  PS2PDF_CONVERTER:     path to the PS2PDF converter
+#  LATEX2HTML_CONVERTER: path to the LaTeX2Html converter 
 #
 #
 
 
 IF (WIN32)
 IF (WIN32)

+ 5 - 5
Modules/FindMatlab.cmake

@@ -1,10 +1,10 @@
 # - this module looks for Matlab
 # - this module looks for Matlab
 # Defines:
 # Defines:
-#  MATLAB_INCLUDE_DIR points to the include path for mex.h, engine.h
-#  MATLAB_LIBRARIES   list of libraries need: libmex.lib, libmx.lib and libeng.lib
-#  MATLAB_MEX_LIBRARY point to libmex.lib
-#  MATLAB_MX_LIBRARY  point to libmx.lib
-#  MATLAB_ENG_LIBRARY point to libeng.lib
+#  MATLAB_INCLUDE_DIR: include path for mex.h, engine.h
+#  MATLAB_LIBRARIES:   required libraries: libmex, etc
+#  MATLAB_MEX_LIBRARY: path to libmex.lib
+#  MATLAB_MX_LIBRARY:  path to libmx.lib
+#  MATLAB_ENG_LIBRARY: path to libeng.lib
 
 
 
 
 SET(MATLAB_FOUND 0)
 SET(MATLAB_FOUND 0)