From 11ad8ee691ef503e342f0d121789ee6bc801b726 Mon Sep 17 00:00:00 2001 From: pythoneer Date: Tue, 16 Jul 2013 14:08:56 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/README.md b/README.md index db03751..24d1a74 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,44 @@ building for Linux use -lX11 | include X11/Xlib.h X11/Xutil.h building for Mac use -framework ApplicationServices | include ApplicationServices/ApplicationServices.h building for Win use User32.lib | include Windows.h +qmake +``` +TEMPLATE = app +CONFIG += console +CONFIG -= app_bundle +CONFIG -= qt +CONFIG += c++11 + +SOURCES += main.cpp \ + xinputsimulatorimpl.cpp \ + xinputsimulator.cpp \ + xinputsimulatorimpllinux.cpp \ + notimplementedexception.cpp \ + xinputsimulatorimplmacos.cpp \ + xinputsimulatorimplwin.cpp + +HEADERS += \ + xinputsimulator.h \ + xinputsimulatorimpl.h \ + xinputsimulatorimpllinux.h \ + notimplementedexception.h \ + xinputsimulatorimplmacos.h \ + xinputsimulatorimplwin.h + +macx { +# mac only + LIBS += -framework ApplicationServices +} +unix:!macx{ +# linux only + LIBS += -lX11 +} +win32 { +# windows only + LIBS += "C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib\User32.Lib" +} +``` + ####Status 2013-07-16: Linux, Mac and Win part with following functions ```cpp From 5cecdb0a1a13110551779c16b316dc1d30a3a7c3 Mon Sep 17 00:00:00 2001 From: pythoneer Date: Tue, 16 Jul 2013 14:16:27 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 24d1a74..0657267 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ win32 { } ``` -####Status +####Status early Alpha 2013-07-16: Linux, Mac and Win part with following functions ```cpp mouseMoveTo @@ -69,3 +69,5 @@ mouseClick mouseScrollY //up and down mouseScrollX //left an right ``` + +be aware that some glitches might appear due to the early state of development. From 89d3a867ea50cb2d4d7a320301ced6af762f382b Mon Sep 17 00:00:00 2001 From: pythoneer Date: Tue, 16 Jul 2013 14:19:17 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0657267..aef40fe 100644 --- a/README.md +++ b/README.md @@ -70,4 +70,4 @@ mouseScrollY //up and down mouseScrollX //left an right ``` -be aware that some glitches might appear due to the early state of development. +be aware that some glitches might appear due to the early state of development. There is not much testing going on apart from the main.cpp. Feel free to file bugreports, wishes or patches :)