Age | Commit message (Collapse) | Author |
|
ones defined in e.g. ~/.asoundrc), currently still shows too much
- adapt to Solid::AudioInterface change
svn path=/trunk/KDE/kdelibs/; revision=685785
|
|
svn path=/trunk/KDE/kdelibs/; revision=685741
|
|
I replaced kde4automoc.cmake with a C++/QtCore based program that can run more
efficient.
Instead of creating a <targetname>.automoc file that is added to the target I
create a <targetname>_automoc.cpp file now that is compiled and linked into
the target. This file #includes all moc files that are not included by other
source files. This way the automoc can, at make-time, decide what mocs need
to be compiled explicitly and linked into the target.
E.g. the following is possible now:
foo.h:
class A : public QObject
{
Q_OBJECT
...
};
foo.cpp does not #include "foo.moc"
run make - everything compiles and links fine (without mentioning the header
in KDE4_MOC_HEADERS either since the new automoc looks at all corresponding
header files from the .cpp files by itself)
now change foo.cpp to #include "foo.moc"
running make now will just work, even with the /fast target.
Next change I did was to create a <targetname>_automoc.cpp.files file to pass
the moc includes and the source files that belong to the target to the
automoc. I could have kept it on the command line but I got a report that the
command line was already too long for Windows' cmd.exe.
Implementation details:
- The messages of the automoc are written using cmake -E cmake_echo_color, so
the automoc correctly colorizes its messages now.
- The moc QProcesses are started in parallel (up to 10).
svn path=/trunk/KDE/kdelibs/; revision=685719
|
|
svn path=/trunk/KDE/kdelibs/; revision=685713
|
|
svn path=/trunk/KDE/kdelibs/; revision=685707
|
|
svn path=/trunk/KDE/kdelibs/; revision=684900
|
|
We didn't add all dependancy for all libraries.
(Same for Win32 it was not correct because we didn't
all depend)
Now we generate file KDEPimLibsDependancy.cmake into kdepimlibs
svn path=/trunk/KDE/kdelibs/; revision=684835
|
|
(I will remove it into extragear next monday)
svn path=/trunk/KDE/kdelibs/; revision=684567
|
|
svn path=/trunk/KDE/kdelibs/; revision=684463
|
|
svn path=/trunk/KDE/kdelibs/; revision=684281
|
|
-DKDEPIMLIBS_DIR=<path>
svn path=/trunk/KDE/kdelibs/; revision=683875
|
|
svn path=/trunk/KDE/kdelibs/; revision=683791
|
|
svn path=/trunk/KDE/kdelibs/; revision=683467
|
|
the macro now expands to nothing)
- delay the automoc to make time
- add KDE4_MOC_HEADERS macro that you can use to create moc_foo.cpp files that get compiled into the target, without you having to include the moc file in the .cpp file
- automoc finds Q_OBJECT macros in .cpp files creates the .moc file from the .cpp file then
- automoc allows both .moc and moc_foo.cpp style includes for qmake compatibility
svn path=/trunk/KDE/kdelibs/; revision=683192
|
|
svn path=/trunk/KDE/kdelibs/; revision=682961
|
|
not REQUIRED
svn path=/trunk/KDE/kdelibs/; revision=682901
|
|
svn path=/trunk/KDE/kdelibs/; revision=682336
|
|
svn path=/trunk/KDE/kdelibs/; revision=682335
|
|
svn path=/trunk/KDE/kdelibs/; revision=682241
|
|
svn path=/trunk/KDE/kdelibs/; revision=682053
|
|
svn path=/trunk/KDE/kdelibs/; revision=681880
|
|
svn path=/trunk/KDE/kdelibs/; revision=681867
|
|
svn path=/trunk/KDE/kdelibs/; revision=681349
|
|
svn path=/trunk/KDE/kdelibs/; revision=681013
|
|
svn path=/trunk/KDE/kdelibs/; revision=680973
|
|
svn path=/trunk/KDE/kdelibs/; revision=680418
|
|
svn path=/trunk/KDE/kdelibs/; revision=680226
|
|
svn path=/trunk/KDE/kdelibs/; revision=680131
|
|
svn path=/trunk/KDE/kdelibs/; revision=680109
|
|
add a convience define to not have to install xmlgui and other files.
Adapt knotify and kdeui tests to this change (remove the extra add_definitions there)
svn path=/trunk/KDE/kdelibs/; revision=679803
|
|
svn path=/trunk/KDE/kdelibs/; revision=679787
|
|
we must exit)
svn path=/trunk/KDE/kdelibs/; revision=679228
|
|
qmake compatibility
svn path=/trunk/KDE/kdelibs/; revision=678809
|
|
Q_DECL_EXPORT expands to nothing
svn path=/trunk/KDE/kdelibs/; revision=678787
|
|
svn path=/trunk/KDE/kdelibs/; revision=678786
|
|
svn path=/trunk/KDE/kdelibs/; revision=678586
|
|
svn path=/trunk/KDE/kdelibs/; revision=678365
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=678277
|
|
svn path=/trunk/KDE/kdelibs/; revision=678154
|
|
dependencies and parallel build doesn't break.
Hopefully with that, dashboard will finally be able to compile
extragear-libs. Its been weeks. Yay.
svn path=/trunk/KDE/kdelibs/; revision=678125
|
|
svn path=/trunk/KDE/kdelibs/; revision=678111
|
|
cmake_install.cmake files
svn path=/trunk/KDE/kdelibs/; revision=678005
|
|
- added explorer integration for easier access to the build environment (shell scripts with predefined pathes for mingw and nmake and msvc)
svn path=/trunk/KDE/kdelibs/; revision=677974
|
|
Alex
svn path=/trunk/KDE/kdelibs/; revision=677369
|
|
svn path=/trunk/KDE/kdelibs/; revision=677073
|
|
svn path=/trunk/KDE/kdelibs/; revision=676990
|
|
svn path=/trunk/KDE/kdelibs/; revision=676983
|
|
svn path=/trunk/KDE/kdelibs/; revision=676977
|
|
kde4_add_test_executable and introduce kde4_add_unit_test for unittests, which
combines kde4_add_test_executable and cmake's add_test. Port the kdelibs
module, the other modules will be comitted shortly.
CCMAIL: kde-core-devel@kde.org
svn path=/trunk/KDE/kdelibs/; revision=676857
|
|
good performance wise).
svn path=/trunk/KDE/kdelibs/; revision=676291
|