You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Laurent Montel b823747c3b Add explicit moc includes to sources for moc-covered headers
* speeds up incremental builds as changes to a header will not always
  need the full mocs_compilation.cpp for all the target's headers rebuild,
  while having a moc file sourced into a source file only adds minor
  extra costs, due to small own code and the used headers usually
  already covered by the source file, being for the same class/struct
* seems to not slow down clean builds, due to empty mocs_compilation.cpp
  resulting in those quickly processed, while the minor extra cost of the
  sourced moc files does not outweigh that in summary.
  Measured times actually improved by some percent points.
  (ideally CMake would just skip empty mocs_compilation.cpp & its object
  file one day)
* enables compiler to see all methods of a class in same compilation unit
  to do some sanity checks
* potentially more inlining in general, due to more in the compilation unit
* allows to keep using more forward declarations in the header, as with the
  moc code being sourced into the cpp file there definitions can be ensured
  and often are already for the needs of the normal class methods
1 year ago
..
drm Don't use QtTest => use QTest + missing include 1 year ago
integration Add explicit moc includes to sources for moc-covered headers 1 year ago
libinput Don't use QtTest => use QTest + missing include 1 year ago
libkwineffects Don't use QtTest => use QTest + missing include 1 year ago
CMakeLists.txt
onscreennotificationtest.cpp Add explicit moc includes to sources for moc-covered headers 1 year ago
onscreennotificationtest.h
opengl_context_attribute_builder_test.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_client_machine.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_ftrace.cpp
test_gestures.cpp
test_utils.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_virtual_desktops.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_window_paint_data.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_x11_timestamp_update.cpp
test_xcb_size_hints.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_xcb_window.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_xcb_wrapper.cpp Don't use QtTest => use QTest + missing include 1 year ago
test_xkb.cpp Don't use QtTest => use QTest + missing include 1 year ago
testutils.h
xcb_scaling_mock.cpp