It makes sense to actually also build the new input_event_spy.cpp

Sometimes C++ surprises me. How could that compile without being in
the build set?
This commit is contained in:
Martin Gräßlin 2016-12-30 19:32:47 +01:00
parent a68e77a711
commit a9ac70f007
3 changed files with 7 additions and 0 deletions

View file

@ -368,6 +368,7 @@ set(kwin_KDEINIT_SRCS
globalshortcuts.cpp globalshortcuts.cpp
input.cpp input.cpp
input_event.cpp input_event.cpp
input_event_spy.cpp
keyboard_input.cpp keyboard_input.cpp
pointer_input.cpp pointer_input.cpp
touch_input.cpp touch_input.cpp

View file

@ -20,6 +20,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "input_event_spy.h" #include "input_event_spy.h"
#include "input.h" #include "input.h"
#include <QPointF>
#include <QSizeF>
namespace KWin namespace KWin
{ {

View file

@ -23,6 +23,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <QtGlobal> #include <QtGlobal>
class QPointF;
class QSizeF;
namespace KWin namespace KWin
{ {
class KeyEvent; class KeyEvent;