| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
| |
We teach KDE3Macros.cmake to generate .la files on Cygwin that match
those produced by libtool. See issue #10122.
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
it adjustable and detect if libkdecore.so is a 64bit library
Alex
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
dcop stuff should work now
Alex
|
|
|
|
|
|
| |
running uic (the kde plugin dir wasn't used)
Alex
|
|
|
|
|
|
| |
installing icons
Alex
|
|
|
|
|
|
|
| |
BUG: use qouting for the path to Qt4 moc and uic, should help with paths
with spaces
Alex
|
|
|
|
|
|
|
|
| |
implements ADD_FILE_DEPENDENCIES()
ENH: mark the variables from FindPNG.cmake as advanced
Alex
|
|
FindKDE.cmake, which wasn't used by anybody that I heard of
Alex
|