From 48b9340a09f6fdaa171d65250ce63f5bc1c42510 Mon Sep 17 00:00:00 2001 From: pythoneer Date: Fri, 20 Feb 2015 21:45:26 +0100 Subject: [PATCH 1/2] Update README.md added xcode generation in readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fb8108e..a37adad 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,12 @@ for cmake there is a CMakeLists.txt file -simply type (for all platforms): >$ cmake --build . ``` -for xcode there is an xcode project file +for xcode you can generate a project by +``` +>$ mkdir build +>$ cd build +>$ cmake -G Xcode ../XInputSimulator/ +``` ####Status early Alpha 2013-07-16: Linux, Mac and Win part with following functions From 0d177f263fc8c5449dab226d84a5e8ff478264fe Mon Sep 17 00:00:00 2001 From: pythoneer Date: Fri, 20 Feb 2015 21:49:24 +0100 Subject: [PATCH 2/2] Update README.md typo --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a37adad..03ccd64 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ For a detailed example see main.cpp sim.mouseUp(XInputSimulator::LEFT_MOUSE_BUTTON); //release the mousebutton press ``` -building for Linux use -lX11 -lXtst -building for Mac use -framework ApplicationServices Carbon CoreFoundation -building for Win use User32.lib +building for Linux use -lX11 -lXtst +building for Mac use -framework ApplicationServices Carbon CoreFoundation +building for Win use User32.lib for cmake there is a CMakeLists.txt file -simply type (for all platforms): ```