Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | FindGLUT: BeOS does not have libXi and libXmu | Rolf Eike Beer | 2013-01-07 | 1 | -7/+21 |
| | |||||
* | Remove CMake-language block-end command arguments | Kitware Robot | 2012-08-13 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -22/+22 |
| | | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | FindGLUT: honor REQUIRED (#12466) | Rolf Eike Beer | 2012-02-15 | 1 | -18/+16 |
| | |||||
* | Add freeglut as library name (#10031) | David Cole | 2011-01-17 | 1 | -1/+1 |
| | | | | Thanks to Thomas Sondergaard for the patch in the bug report. | ||||
* | Modules: Fix spelling 'To distributed' -> 'To distribute' | Todd Gamblin | 2010-08-09 | 1 | -1/+1 |
| | |||||
* | Convert CMake find-modules to BSD License | Brad King | 2009-09-28 | 1 | -0/+13 |
| | | | | | | | This adds copyright/license notification blocks CMake's find-modules. Many of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices. | ||||
* | BUG: fix for 7746 | Bill Hoffman | 2008-09-27 | 1 | -0/+1 |
| | |||||
* | BUG: fix bug 6594 look for glut in more places on windows | Bill Hoffman | 2008-03-13 | 1 | -40/+23 |
| | |||||
* | ENH: use the new FIND_PACKAGE_HANDLE_STANDARD_ARGS() macro in most of the | Alexander Neundorf | 2007-07-19 | 1 | -20/+1 |
| | | | | | | | not-too-complicated modules -remove unnecessary default search paths used in the FIND_XXX() calls Alex | ||||
* | BUG: fix for bug#3646 GLUT not Glut for framework name | Bill Hoffman | 2006-10-03 | 1 | -1/+1 |
| | |||||
* | ENH: some style fixes for the book | Ken Martin | 2005-12-15 | 1 | -1/+1 |
| | |||||
* | ENH: add documentation support for modules | Bill Hoffman | 2005-12-14 | 1 | -11/+8 |
| | |||||
* | BUG: fix for bug 852 | Bill Hoffman | 2005-07-15 | 1 | -1/+2 |
| | |||||
* | ENH: Removing extra 64-bit search paths. They are now constructed ↵ | Brad King | 2005-04-07 | 1 | -8/+0 |
| | | | | automatically from the paths listed. | ||||
* | ENH: Adding support for 64-bit library paths. Contributed by Peter Vanroose. | Brad King | 2005-04-07 | 1 | -0/+8 |
| | |||||
* | BUG: fix for bug 743 | Bill Hoffman | 2004-04-22 | 1 | -1/+3 |
| | |||||
* | ENH: Description of variables now specifies that the full path is required. | Luis Ibanez | 2002-12-03 | 1 | -4/+4 |
| | |||||
* | Hide lots of values in the advanced list | Ian Scott | 2002-09-05 | 1 | -4/+7 |
| | | | | | Fix some bugs OpenGL always needs X11 on Unix | ||||
* | Fixed mistake in comments | Ian Scott | 2002-09-03 | 1 | -31/+87 |
| | | | | | Transferred OPENGL finding logic in from VXL Added Some backwards compatibility with CMake1.4 | ||||
* | ENH: add more paths for the HP | Sebastien Barre | 2002-06-18 | 1 | -0/+2 |
| | |||||
* | FIX: GLU and GLUT flags for Mac OSX | Sebastien Barre | 2002-06-17 | 1 | -20/+24 |
| | |||||
* | ENH: use OPENGL_LIBRARY_PATH as additional search path | Sebastien Barre | 2002-06-14 | 1 | -3/+10 |
| | |||||
* | ENH/FIX: Glut should be found, not set. Add search path for Cygwin | Sebastien Barre | 2002-06-14 | 1 | -12/+18 |
| | |||||
* | FIX: comply with the way OpenGL libs are set in FindOpenGL and FindGLU | Sebastien Barre | 2002-06-13 | 1 | -2/+1 |
| | |||||
* | ENH: make all OpenGL libs advanced, and add support for glu lib with Borland | Sebastien Barre | 2002-06-13 | 1 | -0/+7 |
| | |||||
* | fix for glut on win32 | Bill Hoffman | 2002-06-06 | 1 | -1/+2 |
| | |||||
* | Search path for OpenGL related libraries | Luis Ibanez | 2001-07-16 | 1 | -0/+29 |