aboutsummaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2007-12-30- added new macro KDE4_ADD_APP_ICON, which is used for adding application ↵Ralf Habacker
icons on win32 and mac osx - marked KDE4_ADD_WIN32_APP_ICON as deprecated svn path=/trunk/KDE/kdelibs/; revision=754677
2007-12-29Needs by kaudiocreator and k3b (not necessary to have a FindKCDDB)Laurent Montel
svn path=/trunk/KDE/kdelibs/; revision=754217
2007-12-26also search for X11R7Allen Winter
svn path=/trunk/KDE/kdelibs/; revision=753207
2007-12-22Don't require FindKDEWIN to succeed, its just a convenience thing to not ↵Andreas Pakulat
have to set CMAKE_INCLUDE_PATH and CMAKE_LIB_PATH when installing gnuwin32 libs into a "known" place (like C:\Program Files\win32libs). But that breaks things like emerge which already set the two variables and thus don't set KDEWIN_DIR and don't need to set it. If the convenience thing isn't needed FindKDEWIN.cmake can be removed completely CCMAIL:kde-windows@kde.org svn path=/trunk/KDE/kdelibs/; revision=751844
2007-12-21CMAKE_LIBRARY_PATH is AFAIK an environment variable and thus contains native ↵Andreas Pakulat
paths, so convert them to cmake paths before handing them to find_library svn path=/trunk/KDE/kdelibs/; revision=751355
2007-12-21fix the required-logic in this fileAndreas Pakulat
svn path=/trunk/KDE/kdelibs/; revision=751346
2007-12-20turn-off all debugging messages in "Release Mode"Allen Winter
as discussed on the kde-buildsystem mailing list. svn path=/trunk/KDE/kdelibs/; revision=750964
2007-12-20SVN_SILENT: okular works now with freetype-support for dviPatrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=750771
2007-12-20small change for non-pkgconfig configurationsPatrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=750767
2007-12-19-fix RPATH change from yesterdayAlexander Neundorf
The libs and plugins were built with RPATH, but with the install RPATH, which means that if you run some executable during the build, it may get installed libs, since the RPATH in the libs points to the install dir. Now the libs are linked with the RPATH to the build dir, and when installing they are relinked. This unfortunately takes some time. There are two ways around it: -set KDE4_USE_ALWAYS_FULL_RPATH to FALSE, then you will have the old behaviour or -use cmake cvs and current kdesupport, then the RPATH will be changed not by linking again but by running chrpath on the installed binary, which takes basically no time Alex svn path=/trunk/KDE/kdelibs/; revision=750683
2007-12-19-better commentAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=750668
2007-12-19-synced partly with cmake cvs FindQt4.cmake: optional OPTIONS argument for ↵Alexander Neundorf
some of the macros Alex svn path=/trunk/KDE/kdelibs/; revision=750657
2007-12-18fix commentAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=750066
2007-12-18Fixup for the nodefault lib msvc stuff, it now uses the same method we use ↵Shane King
in FindQt4 for setting flags via a macro and forcing them to the cache. This should allow it to work with the .sln generator too. svn path=/trunk/KDE/kdelibs/; revision=749881
2007-12-17make the option KDE4_USE_ALWAYS_FULL_RPATH default to TRUE, so shared libs ↵Alexander Neundorf
will be built with RPATH this is correct, but make install will now take longer, since now also shared libs have to be relinked Alex svn path=/trunk/KDE/kdelibs/; revision=749796
2007-12-17switch order of arguments as suggestedAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=749769
2007-12-17-mark more variables as advancedAlexander Neundorf
-some cosmetics (indentation etc.) Alex svn path=/trunk/KDE/kdelibs/; revision=749753
2007-12-17As discussed on kde-buildsystem, add --enable-new-dtags to the linker flags ↵David Faure
on linux+gcc. This makes ./kmyunittest.shell work as expected, i.e. it uses the locally built libs instead of the installed ones. svn path=/trunk/KDE/kdelibs/; revision=749514
2007-12-16use FindPkgConfig instead of UsePkgConfigAllen Winter
svn path=/trunk/KDE/kdelibs/; revision=749197
2007-12-16complete rewrite.Allen Winter
svn path=/trunk/KDE/kdelibs/; revision=749189
2007-12-16new macro MACRO_APPEND_IF(var condition value1..valuen)Alexander Neundorf
can be used to simplify code: macro_append_if(mySrcs SOMELIB_FOUND file1.cpp file2.cpp) instead of if(SOMELIB_FOUND) set(mySrcs file1.cpp file2.cpp) endif(SOMELIB_FOUND) Alex svn path=/trunk/KDE/kdelibs/; revision=749077
2007-12-16no need to have different success messages for Windows and UNIXAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=749036
2007-12-16-remove macros QT4_ADD_DBUS_INTERFACE_NO_NAMESPACE() and ↵Alexander Neundorf
QT4_ADD_DBUS_INTERFACES_NO_NAMESPACE(), they were deprecated since september 24 and failed with MESSAGE(SEND_ERROR ...) since then some syncing with FindQt4.cmake from cmake cvs: -some whitespace syncing -under Windows: use the registry to get the default installed Qt4 version, and search qmake also there -support multiple directories in QMAKE_MKSPECS -fixes for finding the include directories for QtAssistant and QtDesigner under OSX Alex svn path=/trunk/KDE/kdelibs/; revision=749028
2007-12-14few fixes i had lying here:Pino Toscano
- fix the usb detrction once again - take into account the include dirs got from pkg-config when looking for usb.h - show the library (not the include path) when showing the "libsub found" message svn path=/trunk/KDE/kdelibs/; revision=748534
2007-12-14minor win32 msvc fixRalf Habacker
svn path=/trunk/KDE/kdelibs/; revision=748334
2007-12-14Move the wchar_t msvc fix local to phonon, including it for everything ↵Shane King
linked against qt causes link problems with other libraries. svn path=/trunk/KDE/kdelibs/; revision=748277
2007-12-13win32 msvc fix: CMAKE_EXE_LINKER_FLAGS_... seems not to be used, instead ↵Ralf Habacker
only CMAKE_EXE_LINKER_FLAGS is used regardless of build type svn path=/trunk/KDE/kdelibs/; revision=748113
2007-12-13win32 msvc fix: debug modes uses different library as releaseRalf Habacker
svn path=/trunk/KDE/kdelibs/; revision=748078
2007-12-13Fixed build for ds9 phonon backend with msvcShane King
svn path=/trunk/KDE/kdelibs/; revision=748071
2007-12-13fix libusb detectionPino Toscano
svn path=/trunk/KDE/kdelibs/; revision=748049
2007-12-13fixed msvc problem indicated by "__thiscall type_info::type_info(class ↵Ralf Habacker
type_info const &)" (??0type_info@@AAE@ABV0@@Z) already defined in LIBCMT.lib(typinfo.obj) svn path=/trunk/KDE/kdelibs/; revision=748005
2007-12-12Update comment to more accurately reflect what's going on with qt linking ↵Shane King
and mingw svn path=/trunk/KDE/kdelibs/; revision=747507
2007-12-12Fix for mingw to ensure -DQT_NO_DEBUG is set so plugins may load correctly ↵Shane King
with QPluginLoader. svn path=/trunk/KDE/kdelibs/; revision=747449
2007-12-11apply patch to properly set QT_NO_DEBUG in release buildsChristian Ehrlicher
from FindQt4.cmake / cmake cvs svn path=/trunk/KDE/kdelibs/; revision=747359
2007-12-11do'h.Allen Winter
there sure is a FindBZip2.cmake in cmake 2.4 and cmake 2.5. svn path=/trunk/KDE/kdelibs/; revision=747304
2007-12-11we've been doing without a proper BZip2 development discovery.Allen Winter
svn path=/trunk/KDE/kdelibs/; revision=747297
2007-12-11Property set QT_NO_DEBUG for non-debug WIN32 builds, allowingt plugins to ↵Shane King
load correctly. svn path=/trunk/KDE/kdelibs/; revision=747171
2007-12-10update version requiresDirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=746894
2007-12-05don't set libs from the cacheAllen Winter
svn path=/trunk/KDE/kdelibs/; revision=745168
2007-12-05SVN_SILENT: update copyrightLaurent Montel
svn path=/trunk/KDE/kdelibs/; revision=745048
2007-12-05Search lib tooLaurent Montel
svn path=/trunk/KDE/kdelibs/; revision=745044
2007-12-03Putting NOTFOUND together with other libs in a variable doesn't give good ↵David Faure
results; this could still be improved though, if some of these libs are indeed optional. svn path=/trunk/KDE/kdelibs/; revision=744437
2007-12-02problem on win32 - might be another problem somewhere else - packaging perhaps?Patrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=743951
2007-11-30no longer needed, I thinkDirk Mueller
svn path=/trunk/KDE/kdelibs/; revision=743399
2007-11-30Adapt to FindPkgConfigWill Stephenson
svn path=/trunk/KDE/kdelibs/; revision=743315
2007-11-30Use FindPkgConfig instead of UsePkgConfig as suggested by Alex.Will Stephenson
CCMAIL: neundorf@kde.org svn path=/trunk/KDE/kdelibs/; revision=743304
2007-11-30merge in the whitespace handling fixes from cmake 2.4.7Dirk Mueller
to make extragear-graphics work svn path=/trunk/KDE/kdelibs/; revision=743254
2007-11-29Add PKGCONFIG_VERSION macro that determines the version of a packageWill Stephenson
using pkg-config too. svn path=/trunk/KDE/kdelibs/; revision=742999
2007-11-29Handle the presence of NetworkManager 0.7 in KDE4 buildsWill Stephenson
*) Adapt MacroEnsureVersion.cmake to be able to check upper limits on version numbers *) Adapt kdelibs/cmake/modules/FindNetworkManager.cmake to report the version found *) Adapt kdebase/workspace/solid to select which version of NetworkManager support to build. *) Move NM 0.6 and NM 0.7 support into separate directories. NB This is build infrastructure only. There is no Solid backend for NM 0.7. Yet. CCMAIL: rdieter@math.unl.edu svn path=/trunk/KDE/kdelibs/; revision=742968
2007-11-25rearrange evaluation of executable params to not forget someChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=741409