Add a message in CMake to notify that ccache has been found and will be used (+ some minor, unrelated things).
This commit is contained in:
parent
7427b455d9
commit
47108a9a68
@ -23,6 +23,7 @@ endif ()
|
||||
|
||||
find_program(CCACHE_EXECUTABLE NAMES ccache)
|
||||
if (CCACHE_EXECUTABLE)
|
||||
message(STATUS "ccache found: will be used for compilation and linkage")
|
||||
SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE_EXECUTABLE})
|
||||
SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CCACHE_EXECUTABLE})
|
||||
endif ()
|
||||
|
@ -31,7 +31,6 @@
|
||||
#endif
|
||||
|
||||
#include "config.h"
|
||||
#include "core/concurrentrun.h"
|
||||
#include "core/logging.h"
|
||||
#include "core/player.h"
|
||||
#include "core/signalchecker.h"
|
||||
|
@ -356,7 +356,7 @@ QPixmap MoodbarProxyStyle::MoodbarPixmap(const ColorVector& colors,
|
||||
// Draw the outer bit
|
||||
p.setPen(QPen(palette.brush(QPalette::Active, QPalette::Background),
|
||||
kMarginSize, Qt::SolidLine, Qt::FlatCap, Qt::MiterJoin));
|
||||
// First: a rectangle around the slier
|
||||
// First: a rectangle around the slider
|
||||
p.drawRect(rect.adjusted(1, 1, -2, -2));
|
||||
// Then, thicker border on left and right, because of the margins.
|
||||
p.setPen(QPen(palette.brush(QPalette::Active, QPalette::Background),
|
||||
|
Loading…
x
Reference in New Issue
Block a user