summaryrefslogtreecommitdiffstats
path: root/Modules/KDE3Macros.cmake
Commit message (Collapse)AuthorAgeFilesLines
* read less from version headers into variablesRolf Eike Beer2012-08-191-18/+17
| | | | | | | | | Instead of reading the whole file using file(READ) and later matching on the whole file use file(STRINGS ... REGEX) to get only those lines we are interested in at all. This will make the list much smaller (good for debugging) and also the regular expressions will need to match on much smaller strings. Also unset the content variables once they are not used anymore.
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-46/+46
| | | | | | | | | | | | | | | | | 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 caseKitware Robot2012-08-131-194/+194
| | | | | | | | | | | | | | | | | 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
* Modules: Fix spelling 'To distributed' -> 'To distribute'Todd Gamblin2010-08-091-1/+1
|
* Fix KDE3 .la file format on CygwinBrad King2010-01-131-1/+5
| | | | | We teach KDE3Macros.cmake to generate .la files on Cygwin that match those produced by libtool. See issue #10122.
* Convert CMake non-find modules to BSD LicenseBrad King2009-09-281-0/+14
| | | | | | | This adds copyright/license notification blocks CMake's non-find modules. Most 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.
* ENH: don't hardcode the /lib/kde3/ directory for the libtool files, but makeAlexander Neundorf2007-07-171-1/+1
| | | | | | it adjustable and detect if libkdecore.so is a 64bit library Alex
* BUG: remove KDE3_ENABLE_FINAL (#4140): it doesn't work currently and IAlexander Neundorf2007-02-201-20/+20
| | | | | | | don't have the time to fix this since it would require bigger changes. Maybe I'll do this if the KDE3 support of CMake becomes more widely used. Alex
* BUG: fix #3827, the name of the var is _tmp_FILE instead of tmp_FILE, so theAlexander Neundorf2006-10-031-3/+4
| | | | | | dcop stuff should work now Alex
* BUG: fix #3324: KDE3Macros.cmake didn't find Qt designer plugins whenAlexander Neundorf2006-08-271-6/+7
| | | | | | running uic (the kde plugin dir wasn't used) Alex
* BUG: apply patch from bero (#3518) so that DESTDIR is supported forAlexander Neundorf2006-08-271-27/+42
| | | | | | installing icons Alex
* BUG: kde3: use QT_UIC_EXECUTABLE instead of simply uicAlexander Neundorf2006-05-191-3/+4
| | | | | | | BUG: use qouting for the path to Qt4 moc and uic, should help with paths with spaces Alex
* BUG: don't include MacroLibrary.cmake, but add a cmake module which ↵Alexander Neundorf2006-03-201-2/+2
| | | | | | | | implements ADD_FILE_DEPENDENCIES() ENH: mark the variables from FindPNG.cmake as advanced Alex
* ENH: add real-world-tested and used KDE3 support, and obsolete ↵Alexander Neundorf2006-03-091-0/+375
FindKDE.cmake, which wasn't used by anybody that I heard of Alex