diff options
author | Alexander Neundorf <neundorf@kde.org> | 2008-07-29 05:59:42 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2008-07-29 05:59:42 +0000 |
commit | da1f88e6f0443ff75eb12dd2288ce9bab488f2c2 (patch) | |
tree | e9623e084c3976f393c3be26f886865fc7b7b7d9 | |
parent | b662f6f1b92adc97e8600b30accb5277b35bbb2f (diff) | |
download | extra-cmake-modules-da1f88e6f0443ff75eb12dd2288ce9bab488f2c2.tar.gz extra-cmake-modules-da1f88e6f0443ff75eb12dd2288ce9bab488f2c2.tar.bz2 |
-this was missing from the commit last night, which enabled the reduced link interface: always write
the reduced link information into KDELibsDependencies file
Alex
svn path=/trunk/KDE/kdelibs/; revision=838965
-rw-r--r-- | modules/KDE4Macros.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake index 23943590..d4dec0d2 100644 --- a/modules/KDE4Macros.cmake +++ b/modules/KDE4Macros.cmake @@ -1107,7 +1107,7 @@ endmacro (KDE4_ADD_APP_ICON) macro(_KDE4_EXPORT_LIBRARY_DEPENDENCIES _append_or_write _filename) - if(KDE4_ENABLE_EXPERIMENTAL_LIB_EXPORT AND UNIX )# AND NOT APPLE) +# if(KDE4_ENABLE_EXPERIMENTAL_LIB_EXPORT AND UNIX )# AND NOT APPLE) # get all cmake variables which end in _LIB_DEPENDS # then parse the target name out of them @@ -1134,7 +1134,7 @@ macro(_KDE4_EXPORT_LIBRARY_DEPENDENCIES _append_or_write _filename) endif(NOT "${target}" STREQUAL "${currentVar}") endforeach(currentVar ${allVars}) - endif(KDE4_ENABLE_EXPERIMENTAL_LIB_EXPORT AND UNIX)# AND NOT APPLE) +# endif(KDE4_ENABLE_EXPERIMENTAL_LIB_EXPORT AND UNIX)# AND NOT APPLE) endmacro(_KDE4_EXPORT_LIBRARY_DEPENDENCIES) macro (_KDE4_TARGET_LINK_INTERFACE_LIBRARIES _target _interface_libs) |