aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-11Add support to automoc for .hxx, .hpp, .H header files.Loïc Corbasson
Approved on kde-buildsystem. svn path=/trunk/KDE/kdelibs/; revision=747344
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-10Long-standing problem with FreeBSD builds: automoc hangs. Can't tell why or ↵Adriaan de Groot
how, but running fewer processes in parallel fixes it. So FBSD gets a hard clamp on the number of mocs. Confirmed by Alex Neundorf. svn path=/trunk/KDE/kdelibs/; revision=747023
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-25SVN_SILENT: fix indentingMatthias Kretz
svn path=/trunk/KDE/kdelibs/; revision=741589
2007-11-25rearrange evaluation of executable params to not forget someChristian Ehrlicher
svn path=/trunk/KDE/kdelibs/; revision=741409
2007-11-24It is really a bad idea to search for stuff _only_ using NO_DEFAULT_PATH.Alexander Neundorf
In the case that what you are looking for is somewhere else then cmake has no way to find it. For custom install locations cmake provides the environment variables CMAKE_LIBRARY_PATH and FIND_INCLUDE_PATH. So if you have your own set of install locations, set these two environment variables accordingly. cmake cvs additionally offers CMAKE_FIND_PREFIX_PATH, which is used by all FIND_PATH/FILE/LIBRARY/PROGRAM() calls with the appropriate subdir appended. I.e. if you install everything to ~/mystuff/, do export CMAKE_FIND_PREFIX_PATH=$HOME/mystuff, cmake will append the include/, lib/ and bin/ subdirectories automatically. Adding CMAKE_INSTALL_DIR/<suffix> is not necessary, this is done by default in FindKDE4Internal.cmake (and in cmake > 2.4.7). So now at first the FIND_XXX() calls are used with NO_DEFAULT_PATH, so no change here for UNIX, and after that the FIND_XXX() calls are used without NO_DEFAULT_PATH for the case that the first one didn't succeed (so no change for Windows). This has the nice effect that the cmake-provided means to specify custom search locations work again. Alex CCMAIL: ch.ehrlicher@gmx.de CCMAIL: kretz@kde.org svn path=/trunk/KDE/kdelibs/; revision=741164
2007-11-24fix indentationAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=741152
2007-11-21Fix to allow finding of windows ruby libraryShane King
svn path=/trunk/KDE/kdelibs/; revision=739636
2007-11-20The po file is located in the source dir, so cd to that folder instead of ↵Tom Albers
the build dir. See k-c-d. svn path=/trunk/KDE/kdelibs/; revision=739317
2007-11-20if there's nothing to moc, don't add automoc source which is C++, then a lib ↵Matthias Kretz
with only C sources remains a C lib svn path=/trunk/KDE/kdelibs/; revision=739064
2007-11-19-add some more quotes to help with spacesAlexander Neundorf
-use only one SET_TARGET_PROPERTIES() instead of two, kdefakes is build as C++ instead of C library because of automoc (which comes with kde4_add_library, which adds a C++ file to every target). To avoid this simply add_library() could be used, it just has to be made sure that the RPATH is correc (should be automatically) and the correct definitions are set (for exporting the right symbols) Alex CCMAIL: ossi@kde.org svn path=/trunk/KDE/kdelibs/; revision=738871
2007-11-19reverting the change -> problem lies in kdebase (use of ↵Patrick Spendrin
DBUS_INTERFACES_INSTALL_DIR is not wanted, instead KDE4_DBUS_INTERFACES_DIR should be used; this makes a difference now.) CCMAIL: neundorf@kde.org svn path=/trunk/KDE/kdelibs/; revision=738489
2007-11-18not sure whether I should change it here or in the qt4_add_dbus_* macros; ↵Patrick Spendrin
breaks possibly something svn path=/trunk/KDE/kdelibs/; revision=738461
2007-11-18It's used by kdeutils/extragear/networkLaurent Montel
svn path=/trunk/KDE/kdelibs/; revision=738323
2007-11-16fix for build on systmes that do not have OPENEXR_ILMTHREAD_LIBRARYValentin Rusu
svn path=/trunk/KDE/kdelibs/; revision=737656
2007-11-16Use the -Woverloaded-virtual compile option, if available.Allen Winter
OK'd on k-c-d. svn path=/trunk/KDE/kdelibs/; revision=737584
2007-11-16newer OpenEXR has a libIlmThreadBenjamin Reed
svn path=/trunk/KDE/kdelibs/; revision=737558
2007-11-14-change the install destinations for Windows: everything is relative to ↵Alexander Neundorf
CMAKE_INSTALL_PREFIX, modifying some dirs via the cache is no longer possible (because this is what the cmake code in kdelibs/CMakeLists.txt / the KDE4 win32 installer expects anyway Alex CCMAIL: ps_ml@gmx.de CCMAIL: ralf.habacker@freenet.de CCMAIL: Ch.Ehrlicher@gmx.de Patrick: can you please remove the LIB_INSTALL_DIR hack for win32 in the places where you added it ? It should now work everywhere automatically (because it is done now in FindKDE4Internal.cmake) Only issue: quotes must not be used around ${LIB_INSTALL_DIR}, because they turn the list of arguments into a string containing all the values Alex svn path=/trunk/KDE/kdelibs/; revision=736793
2007-11-14the debug output was suspicious, and indeed this was looking for /kdedir/lib ↵David Faure
and not using it as a PATH. svn path=/trunk/KDE/kdelibs/; revision=736545
2007-11-13changing kde4_add_win32_icon acc. to the hints of alex neundorf.Patrick Spendrin
CCMAIL: neundorf@kde.org svn path=/trunk/KDE/kdelibs/; revision=736285
2007-11-12-fix error message for cygwinAlexander Neundorf
Alex svn path=/trunk/KDE/kdelibs/; revision=735844
2007-11-12minor cosmetic changes: fix indentation (no tabs), don't test for WIN32 ↵Alexander Neundorf
twice in a row Alex M FindKDE4Internal.cmake svn path=/trunk/KDE/kdelibs/; revision=735843
2007-11-12Move from kdemultimediaLaurent Montel
svn path=/trunk/KDE/kdelibs/; revision=735587
2007-11-11make freetype findable under windowsPatrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=735384
2007-11-09make msvc build not depending on windresPatrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=734742
2007-11-09hopefully the last commit concerning thisPatrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=734696
2007-11-09this is the current working solution but I couldn't set kate_KDEINIT_SRCS ↵Patrick Spendrin
from the macro, that's why it isn't included anymore svn path=/trunk/KDE/kdelibs/; revision=734672
2007-11-09changing macro to just work in case of png2ico's existance - removing ↵Patrick Spendrin
duplication from FindKDEWIN32.cmake svn path=/trunk/KDE/kdelibs/; revision=734634
2007-11-08temporary fix to add QT_NO_DEBUG in release mode to fix qt plugin compile on ↵Christian Ehrlicher
win32 http://lists.kde.org/?l=kde-buildsystem&m=119446327108889&w=2 svn path=/trunk/KDE/kdelibs/; revision=734116
2007-11-07adding icon install macro from kdewin-installer/marblePatrick Spendrin
svn path=/trunk/KDE/kdelibs/; revision=734021
2007-11-07Added Soprano version checkSebastian Trueg
svn path=/trunk/KDE/kdelibs/; revision=733928
2007-11-06- GPLv2+Matthias Kretz
- found an uncommitted change that omits -I if path.isEmpty() which can happen if no include paths are given svn path=/trunk/KDE/kdelibs/; revision=733538
2007-11-06Make __KDE_HAVE_GCC_VISIBILITY cached.Luboš Luňák
svn path=/trunk/KDE/kdelibs/; revision=733507
2007-11-02If using cache values set all *_FOUND variables to true, not just Soprano_FOUND.Andreas Pakulat
svn path=/trunk/KDE/kdelibs/; revision=732145