Difference between revisions of "Projects:DBP3:MGH CMake Enhancements"

From NAMIC Wiki
Jump to: navigation, search
 
(12 intermediate revisions by the same user not shown)
Line 4: Line 4:
  
 
== List of enhanced modules ==
 
== List of enhanced modules ==
* FindCUDA
+
* FindCUDA [James Shackleford]
 +
** Test for MinGW (cuda does not work on MinGW)
 +
** Check gcc version (nvcc requires 4.3)
 +
** Build code for multiple compute capabilities
 
* FindDCMTK
 
* FindDCMTK
 +
** Append dependent libraries (SSL, PNG, TIFF, ZLIB)
 
* FindFortran
 
* FindFortran
 +
** Workarounds for bugs [http://www.vtk.org/Bug/view.php?id=9220 9220], [http://www.vtk.org/Bug/view.php?id=8345 8345]
 +
** (See also FindF2C.cmake)
 +
** See also: http://plplot.svn.sourceforge.net/viewvc/plplot/trunk/cmake/modules/
 
* FindMatlab
 
* FindMatlab
 
** Complete rewrite (stock version does not work)
 
** Complete rewrite (stock version does not work)
Line 20: Line 27:
 
* FindF2C
 
* FindF2C
 
* FindFFTW
 
* FindFFTW
* FindGengetopt
+
** See also: https://github.com/jedbrown/cmake-modules
 +
* FindGengetopt [Simon Rit]
 
* FindOctave
 
* FindOctave
 +
** See also: http://plplot.svn.sourceforge.net/viewvc/plplot/trunk/cmake/modules/
 
* FindOpenCL
 
* FindOpenCL
* FindSSE
+
* FindSSE [James Shackleford]

Latest revision as of 19:28, 21 November 2010

Home < Projects:DBP3:MGH CMake Enhancements

We have made several bug fixes to CMake modules, and it would be helpful to us if these could be pushed upstream. However, some of these will require additional work before they can be accepted into CMake proper.

List of enhanced modules

  • FindCUDA [James Shackleford]
    • Test for MinGW (cuda does not work on MinGW)
    • Check gcc version (nvcc requires 4.3)
    • Build code for multiple compute capabilities
  • FindDCMTK
    • Append dependent libraries (SSL, PNG, TIFF, ZLIB)
  • FindFortran
  • FindMatlab
    • Complete rewrite (stock version does not work)
  • FindOpenMP
    • Separate tests for CFLAGS and LDFLAGS (needed for MSVC??)
    • Test for LIBRARIES (needed for some gcc versions)
  • FindSubversion
    • Add search for svnversion
  • FindZLIB

List of new modules