| Age | Commit message (Collapse) | Author |
|
now use install(FILES... RENAME...)
=> make install DESTDIR=<foo> works
svn path=/trunk/KDE/kdelibs/; revision=520364
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=520067
|
|
Laurent, where did this cause problems ?
Was this with the files where source files with the same base names are now
compiled to the same target, and beforfe with libtool one of them was part
of a convenience libs ?
Now that we don't use convenience libs anymore, this means that if two
source files have the same basename, they will generate moc files with the
same name, also for ui-files. What can we do about this ?
If two files have the same names, maybe the name is too generic, so let's
rename one of them to a more specialized name, especially now that we have
svn.
But generating files is the source-tree is a no-no.
CCMAIL: montel@kde.org
svn path=/trunk/KDE/kdelibs/; revision=520047
|
|
svn path=/trunk/KDE/kdelibs/; revision=520043
|
|
default: compile with RPATH to the builddir, when installing link again with RPATH to the install dir, the kde lib dir and the Qt lib dir
none: no RPATH at all
install: compile with RPATH to the install dir, the kde lib dir and the Qt lib dir
both: compiel with RPATH to the build dir, the install dir, the kde lib dir and the Qt lib dir
-sync kde3 stuff with cmake cvs
-fix building if kdewidgets and kstyles (get_target_properties doesn't work before the target is defined)
Alex
svn path=/trunk/KDE/kdelibs/; revision=519312
|
|
svn path=/trunk/KDE/kdelibs/; revision=519132
|
|
svn path=/trunk/KDE/kdelibs/; revision=519127
|
|
Fix some bug when we lonk with no-install lib
svn path=/trunk/KDE/kdelibs/; revision=519125
|
|
svn path=/trunk/KDE/kdelibs/; revision=517557
|
|
-prepare UsePkgconfig for moving to cmake
Alex
svn path=/trunk/KDE/kdelibs/; revision=516854
|
|
to enable it again, remove the line 104, where KDE4_NEED_WRAPPER_SCRIPTS is set to false again
If you have current cmake cvs, you can then:
-enable CMAKE_SKIP_RPATH using ccmake, then everything will be built without RPATH
-disable CMAKE_SKIP_RPATH and enable KDE4_RPATH_TO_BUILD_DIR, then everything will be built with RPATH pointing to both the build and the install dir
-disable CMAKE_SKIP_RPATH and disable KDE4_RPATH_TO_BUILD_DIR, then everything will be built with RPATH pointing to the install dir
In all three cases no relinking will happen during install.
If built without RPATH to the builddir, the executables are executed using wrapper scripts named <name>.sh, e.g. kconfig_compiler.sh.
some changes to the kde3 stuff:
-renamed KDE3_ADD_KLM to KDE3_ADD_KDEINIT_EXECUTABLE
-removed KDE3_PLACEHOLDER
-removed KDE3_CREATE_LIBTOOL_FILE to KDE3_INSTALL_LIBTOOL_FILE
Please check whether it still works for you and let me know. I plan to move the KDE3 related files to cmake RSN.
CCMAIL: kde-buildsystem@kde.org
CCMAIL: b_mann@gmx.de
CCMAIL: christian.loose@hamburg.de
Alex
svn path=/trunk/KDE/kdelibs/; revision=516642
|
|
except KDE4_INCLUDE_DIR, since this is used for compiling and not for installing
-change the detection of KDE4_MODULE_DIR to use CMAKE_CURRENT_LIST_FILE
I could not commit to kio/kssl/kssl/, so this may break installing there
Alex
CCMAIL: kde-buildsystem@kde.org
CCMAIL: montel@kde.org
svn path=/trunk/KDE/kdelibs/; revision=510826
|
|
-renamed KDE4_ICON_DIR to ICON_INSTALL_DIR
-changed KDE4_INSTALL_ICONS(theme dir) to KDE4_INSTALL_ICONS( dir theme)
and dir now has to contain the "/icons" subdir, it is NOT appended anymore in the KDE4_INSTALL_ICONS() macro
CCMAIL: montel@kde.org
Alex
svn path=/trunk/KDE/kdelibs/; revision=510673
The following changes were in SVN, but were removed from git:
M pics/crystalsvg/CMakeLists.txt
M pics/hicolor/CMakeLists.txt
|
|
-remove the unused "install_icon" targets
-mark more variables as "ADVANCED"
Alex
svn path=/trunk/KDE/kdelibs/; revision=510649
|
|
CCMAIL:neundorf@kde.org
svn path=/trunk/KDE/kdelibs/; revision=509782
|
|
compilation because
the subdir (in the builddir) is missing from the -I. How could we add it?
(E.g. kdelibs/kio/kfile/kopenwith.cpp is compiled from kdelibs/kio, so the relative path
to the header is kfile/kopenwith.h, and this created a kfile/kopenwith.moc, but it's included
as "kopenwith.moc" from kopenwith.h so we need -Ikfile in the compilation line. This is
necessary for the kabc/addressbook.h vs kabc/kab/addressbook.h case)
CCMAIL: kde-buildsystem@kde.org
svn path=/trunk/KDE/kdelibs/; revision=509646
|
|
This solves a problem in kabc which has addressbook.h and kab/addressbook.h,
and looks more logical in e.g. kio with all its subdirs.
svn path=/trunk/KDE/kdelibs/; revision=509637
|
|
svn path=/trunk/KDE/kdelibs/; revision=509626
|
|
of course...
svn path=/trunk/KDE/kdelibs/; revision=509625
|
|
svn path=/trunk/KDE/kdelibs/; revision=509624
|
|
generator you will have ready-to-use kdevelop projects :-)
...may have problems with out-of-source builds (requires changes in kdevelop)
Alex
svn path=/trunk/KDE/kdelibs/; revision=509123
|
|
own FindKDEWIN32.cmake file
-added a new FindGNUWIN32.cmake file, which tries to find the gnuwin32 base directory
-changed all "FOO_LIBRARY" variable names to "FOO_LIBRARIES" to be more consistent with the other cmake modules
-added a macro_getenv_win_path() which replaces all backslahes with slashes from environment variables
-modified the kde4_add_kcfg_files() command, so that the generated header is also processed by moc
-all tests compile and link
Alex
CCMAIL:kde-buildsystem@kde.org
The changes to the windows stuff are untested, since I don't have a windows box.
Please check that everything still works. Please have a look at FindGNUWIN32.cmake,
there are probably ways to improve this. The resulting GNUWIN32_DIR variable is used in other
cmake modules as default path to search for headers and libraries.
svn path=/trunk/KDE/kdelibs/; revision=508648
|
|
to kde4_install_libtool_file(dir_relative_to_install_prefix target)
-added variable KDE4_PLUGIN_INSTALL_DIR, used usually for installing plugins
-changed am2cmake accordingly
-edited FindLibXml2.cmake and FindLibArt so that they work correctly with CMAKE_INSTALL_PATH
-changed generated_findpackage_file accordingly
-some minor formatting changes
Alex
CCMAIL: montel@kde.org
svn path=/trunk/KDE/kdelibs/; revision=508458
|
|
KDE cmake files are now workaround-free (if I didn't forget any):
-use GET_FILENAME_COMPONENT(... ABSOLUTE) instead of QT4_GET_ABS_PATH()
-use the new EXECUTE_PROCESS() instead of EXEC_PROGRAM() which discards stderr output
-use check_symbol_exists() instead of check_function_exists() since this works better (mainly various windows issues)
-use the new WORKING_DIRECTORY argument for ADD_CUSTOM_COMMAND() instead of cmake -E chdir ...
Alex
svn path=/trunk/KDE/kdelibs/; revision=508407
|
|
HAVE_PCREPOSIX doesn't get set
-use qPrintable() in kded/kbuildsycoca.cpp
patches by Brad King:
-fix stat.h for mingw
-fix typo in FindQt4.cmake
-only depend on dcopidl2ccp and kconfig_compiler when compiling kdelibs
Alex
svn path=/trunk/KDE/kdelibs/; revision=507620
|
|
macro_additional_clean_files()
-remove macro_append_source_files_properties() and add macro_add_file_dependencies()
-build kICE as a static library and link to it, instead of including the sources multiple times
-remove the -kdemain=main from dcop/, hope this didn't break things on windows
some patches from Brad King:
-rename the target dcop (the executable) to dcop_executable, otherwise MS Visual Studio complains about multiple targets with the same name
, the name of the created executable stays "dcop"
-add the dependency of all dcop stubs and skels to dcopidl2cpp, to make sure it is compiled before this rule is executed
Alex
svn path=/trunk/KDE/kdelibs/; revision=507257
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=506938
|
|
macro_append_source_files_properties()
don't use CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH in FindKDE4.cmake
clean more files
Alex
svn path=/trunk/KDE/kdelibs/; revision=506927
|
|
now we can specify /usr/lib directory and not jsut usr/lib/kde4 for la lib
(necessary for .la installed into /usr/lib)
svn path=/trunk/KDE/kdelibs/; revision=506650
|
|
before it installed la lib just in /usr/lib/kde4
svn path=/trunk/KDE/kdelibs/; revision=506638
|
|
-fix the klockfile test
Alex
svn path=/trunk/KDE/kdelibs/; revision=506092
|
|
it clear it is a macro and not a builtin command
-kjsembed compiles
-CheckCXXSourceCompiles now support multiple include paths
-compile fix in kjsembed/value_binding.cpp: prefer the local global.h, otherwise it might end up with the global.h from kio/kio/, depending on the order of include directories
-use the new "-o" switch for dcopidl
-add a (temporary) workaround for David's uic problem
Alex
svn path=/trunk/KDE/kdelibs/; revision=505580
The following changes were in SVN, but were removed from git:
M pics/CMakeLists.txt
|
|
svn path=/trunk/KDE/kdelibs/; revision=505535
|
|
svn path=/trunk/KDE/kdelibs/; revision=505485
The following changes were in SVN, but were removed from git:
M pics/crystalsvg/CMakeLists.txt
M pics/hicolor/CMakeLists.txt
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=505471
|
|
for now
fix typo in mingw section
Alex
svn path=/trunk/KDE/kdelibs/; revision=505460
|
|
part of the build process
-an improved version of CheckIncludeFiles.cmake has been added, which takes additional include directories as argument
-the check for the KDE4_LIB_DIR was wrong, it returned libkxmlcore.so instead of the directory
-fix the header install commands for the win/include/ stuff
Alex
svn path=/trunk/KDE/kdelibs/; revision=505455
|
|
svn path=/trunk/KDE/kdelibs/; revision=505212
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=504990
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=504940
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=504937
|
|
(install doesn't work for the moment )
svn path=/trunk/KDE/kdelibs/; revision=504910
|
|
-DartConfig.cmake contributed by Bill Hoffman
Alex
svn path=/trunk/KDE/kdelibs/; revision=502405
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=502383
|
|
generated multiple times for the same headers
Alex
svn path=/trunk/KDE/kdesdk/cmake/; revision=501726
|
|
Alex
svn path=/trunk/KDE/kdesdk/cmake/; revision=501434
|
|
Alex
svn path=/trunk/KDE/kdesdk/cmake/; revision=501378
|