Skip to content

Commit 8801366

Browse files
committed
stuff
cmake for osx ; osx xcode linux cmake
1 parent 958fdfe commit 8801366

File tree

19 files changed

+978
-38
lines changed

19 files changed

+978
-38
lines changed

XInputSimulator/.DS_Store

6 KB
Binary file not shown.

XInputSimulator/.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

XInputSimulator/.idea/XInputSimulator.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

XInputSimulator/.idea/misc.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

XInputSimulator/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

XInputSimulator/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

XInputSimulator/.idea/workspace.xml

Lines changed: 339 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

XInputSimulator/CMakeLists.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
cmake_minimum_required(VERSION 2.8.4)
2+
project(XInputSimulator)
3+
4+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
5+
6+
set(SOURCE_FILES
7+
main.cpp
8+
notimplementedexception.cpp
9+
notimplementedexception.h
10+
xinputsimulator.cpp
11+
xinputsimulator.h
12+
xinputsimulatorimpl.cpp
13+
xinputsimulatorimpl.h
14+
xinputsimulatorimpllinux.cpp
15+
xinputsimulatorimpllinux.h
16+
xinputsimulatorimplmacos.cpp
17+
xinputsimulatorimplmacos.h
18+
xinputsimulatorimplwin.cpp
19+
xinputsimulatorimplwin.h)
20+
21+
# Linux
22+
if(UNIX AND NOT APPLE)
23+
find_library(X_11 X11)
24+
find_library(X_TST Xtst)
25+
set(EXTRA_LIBS ${X_11} ${X_TST})
26+
endif(UNIX AND NOT APPLE)
27+
28+
# Apple
29+
if(APPLE)
30+
find_library(APP_SERVICES ApplicationServices)
31+
find_library(CARBON Carbon)
32+
find_library(CORE_FOUNDATION CoreFoundation )
33+
set(EXTRA_LIBS ${APP_SERVICES_LIBRARY} ${CARBON} ${CORE_FOUNDATION})
34+
endif(APPLE)
35+
36+
add_executable(XInputSimulator ${SOURCE_FILES})
37+
target_link_libraries(XInputSimulator ${EXTRA_LIBS} )
Lines changed: 293 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,293 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
D2C6A1F61A8FD9E900CAA80C /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A1E81A8FD9E900CAA80C /* main.cpp */; };
11+
D2C6A1F71A8FD9E900CAA80C /* notimplementedexception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A1E91A8FD9E900CAA80C /* notimplementedexception.cpp */; };
12+
D2C6A1F81A8FD9E900CAA80C /* xinputsimulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A1EB1A8FD9E900CAA80C /* xinputsimulator.cpp */; };
13+
D2C6A1F91A8FD9E900CAA80C /* xinputsimulatorimpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A1EE1A8FD9E900CAA80C /* xinputsimulatorimpl.cpp */; };
14+
D2C6A1FA1A8FD9E900CAA80C /* xinputsimulatorimpllinux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A1F01A8FD9E900CAA80C /* xinputsimulatorimpllinux.cpp */; };
15+
D2C6A1FB1A8FD9E900CAA80C /* xinputsimulatorimplmacos.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A1F21A8FD9E900CAA80C /* xinputsimulatorimplmacos.cpp */; };
16+
D2C6A1FC1A8FD9E900CAA80C /* xinputsimulatorimplwin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2C6A1F41A8FD9E900CAA80C /* xinputsimulatorimplwin.cpp */; };
17+
D2C6A1FE1A8FDBF400CAA80C /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2C6A1FD1A8FDBF400CAA80C /* ApplicationServices.framework */; };
18+
D2C6A2001A8FF30700CAA80C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2C6A1FF1A8FF30700CAA80C /* Carbon.framework */; };
19+
D2C6A2021A8FF33300CAA80C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2C6A2011A8FF33300CAA80C /* CoreFoundation.framework */; };
20+
/* End PBXBuildFile section */
21+
22+
/* Begin PBXCopyFilesBuildPhase section */
23+
D2C6A1D81A8FD8CF00CAA80C /* CopyFiles */ = {
24+
isa = PBXCopyFilesBuildPhase;
25+
buildActionMask = 2147483647;
26+
dstPath = /usr/share/man/man1/;
27+
dstSubfolderSpec = 0;
28+
files = (
29+
);
30+
runOnlyForDeploymentPostprocessing = 1;
31+
};
32+
/* End PBXCopyFilesBuildPhase section */
33+
34+
/* Begin PBXFileReference section */
35+
D2C6A1DA1A8FD8CF00CAA80C /* XInputSimulator */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = XInputSimulator; sourceTree = BUILT_PRODUCTS_DIR; };
36+
D2C6A1E61A8FD9E900CAA80C /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = "<group>"; };
37+
D2C6A1E71A8FD9E900CAA80C /* COPYING.LESSER */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING.LESSER; sourceTree = "<group>"; };
38+
D2C6A1E81A8FD9E900CAA80C /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
39+
D2C6A1E91A8FD9E900CAA80C /* notimplementedexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notimplementedexception.cpp; sourceTree = "<group>"; };
40+
D2C6A1EA1A8FD9E900CAA80C /* notimplementedexception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notimplementedexception.h; sourceTree = "<group>"; };
41+
D2C6A1EB1A8FD9E900CAA80C /* xinputsimulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xinputsimulator.cpp; sourceTree = "<group>"; };
42+
D2C6A1EC1A8FD9E900CAA80C /* xinputsimulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xinputsimulator.h; sourceTree = "<group>"; };
43+
D2C6A1ED1A8FD9E900CAA80C /* XInputSimulator.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = XInputSimulator.pro; sourceTree = "<group>"; };
44+
D2C6A1EE1A8FD9E900CAA80C /* xinputsimulatorimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xinputsimulatorimpl.cpp; sourceTree = "<group>"; };
45+
D2C6A1EF1A8FD9E900CAA80C /* xinputsimulatorimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xinputsimulatorimpl.h; sourceTree = "<group>"; };
46+
D2C6A1F01A8FD9E900CAA80C /* xinputsimulatorimpllinux.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xinputsimulatorimpllinux.cpp; sourceTree = "<group>"; };
47+
D2C6A1F11A8FD9E900CAA80C /* xinputsimulatorimpllinux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xinputsimulatorimpllinux.h; sourceTree = "<group>"; };
48+
D2C6A1F21A8FD9E900CAA80C /* xinputsimulatorimplmacos.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xinputsimulatorimplmacos.cpp; sourceTree = "<group>"; };
49+
D2C6A1F31A8FD9E900CAA80C /* xinputsimulatorimplmacos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xinputsimulatorimplmacos.h; sourceTree = "<group>"; };
50+
D2C6A1F41A8FD9E900CAA80C /* xinputsimulatorimplwin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xinputsimulatorimplwin.cpp; sourceTree = "<group>"; };
51+
D2C6A1F51A8FD9E900CAA80C /* xinputsimulatorimplwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xinputsimulatorimplwin.h; sourceTree = "<group>"; };
52+
D2C6A1FD1A8FDBF400CAA80C /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; };
53+
D2C6A1FF1A8FF30700CAA80C /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
54+
D2C6A2011A8FF33300CAA80C /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
55+
/* End PBXFileReference section */
56+
57+
/* Begin PBXFrameworksBuildPhase section */
58+
D2C6A1D71A8FD8CF00CAA80C /* Frameworks */ = {
59+
isa = PBXFrameworksBuildPhase;
60+
buildActionMask = 2147483647;
61+
files = (
62+
D2C6A2021A8FF33300CAA80C /* CoreFoundation.framework in Frameworks */,
63+
D2C6A2001A8FF30700CAA80C /* Carbon.framework in Frameworks */,
64+
D2C6A1FE1A8FDBF400CAA80C /* ApplicationServices.framework in Frameworks */,
65+
);
66+
runOnlyForDeploymentPostprocessing = 0;
67+
};
68+
/* End PBXFrameworksBuildPhase section */
69+
70+
/* Begin PBXGroup section */
71+
D2C6A1D11A8FD8CF00CAA80C = {
72+
isa = PBXGroup;
73+
children = (
74+
D2C6A2011A8FF33300CAA80C /* CoreFoundation.framework */,
75+
D2C6A1FF1A8FF30700CAA80C /* Carbon.framework */,
76+
D2C6A1FD1A8FDBF400CAA80C /* ApplicationServices.framework */,
77+
D2C6A1E61A8FD9E900CAA80C /* COPYING */,
78+
D2C6A1E71A8FD9E900CAA80C /* COPYING.LESSER */,
79+
D2C6A1E81A8FD9E900CAA80C /* main.cpp */,
80+
D2C6A1E91A8FD9E900CAA80C /* notimplementedexception.cpp */,
81+
D2C6A1EA1A8FD9E900CAA80C /* notimplementedexception.h */,
82+
D2C6A1EB1A8FD9E900CAA80C /* xinputsimulator.cpp */,
83+
D2C6A1EC1A8FD9E900CAA80C /* xinputsimulator.h */,
84+
D2C6A1ED1A8FD9E900CAA80C /* XInputSimulator.pro */,
85+
D2C6A1EE1A8FD9E900CAA80C /* xinputsimulatorimpl.cpp */,
86+
D2C6A1EF1A8FD9E900CAA80C /* xinputsimulatorimpl.h */,
87+
D2C6A1F01A8FD9E900CAA80C /* xinputsimulatorimpllinux.cpp */,
88+
D2C6A1F11A8FD9E900CAA80C /* xinputsimulatorimpllinux.h */,
89+
D2C6A1F21A8FD9E900CAA80C /* xinputsimulatorimplmacos.cpp */,
90+
D2C6A1F31A8FD9E900CAA80C /* xinputsimulatorimplmacos.h */,
91+
D2C6A1F41A8FD9E900CAA80C /* xinputsimulatorimplwin.cpp */,
92+
D2C6A1F51A8FD9E900CAA80C /* xinputsimulatorimplwin.h */,
93+
D2C6A1DC1A8FD8CF00CAA80C /* XInputSimulator */,
94+
D2C6A1DB1A8FD8CF00CAA80C /* Products */,
95+
);
96+
sourceTree = "<group>";
97+
};
98+
D2C6A1DB1A8FD8CF00CAA80C /* Products */ = {
99+
isa = PBXGroup;
100+
children = (
101+
D2C6A1DA1A8FD8CF00CAA80C /* XInputSimulator */,
102+
);
103+
name = Products;
104+
sourceTree = "<group>";
105+
};
106+
D2C6A1DC1A8FD8CF00CAA80C /* XInputSimulator */ = {
107+
isa = PBXGroup;
108+
children = (
109+
);
110+
path = XInputSimulator;
111+
sourceTree = "<group>";
112+
};
113+
/* End PBXGroup section */
114+
115+
/* Begin PBXNativeTarget section */
116+
D2C6A1D91A8FD8CF00CAA80C /* XInputSimulator */ = {
117+
isa = PBXNativeTarget;
118+
buildConfigurationList = D2C6A1E11A8FD8CF00CAA80C /* Build configuration list for PBXNativeTarget "XInputSimulator" */;
119+
buildPhases = (
120+
D2C6A1D61A8FD8CF00CAA80C /* Sources */,
121+
D2C6A1D71A8FD8CF00CAA80C /* Frameworks */,
122+
D2C6A1D81A8FD8CF00CAA80C /* CopyFiles */,
123+
);
124+
buildRules = (
125+
);
126+
dependencies = (
127+
);
128+
name = XInputSimulator;
129+
productName = XInputSimulator;
130+
productReference = D2C6A1DA1A8FD8CF00CAA80C /* XInputSimulator */;
131+
productType = "com.apple.product-type.tool";
132+
};
133+
/* End PBXNativeTarget section */
134+
135+
/* Begin PBXProject section */
136+
D2C6A1D21A8FD8CF00CAA80C /* Project object */ = {
137+
isa = PBXProject;
138+
attributes = {
139+
LastUpgradeCheck = 0610;
140+
ORGANIZATIONNAME = "Peter Mueller inc.";
141+
TargetAttributes = {
142+
D2C6A1D91A8FD8CF00CAA80C = {
143+
CreatedOnToolsVersion = 6.1.1;
144+
};
145+
};
146+
};
147+
buildConfigurationList = D2C6A1D51A8FD8CF00CAA80C /* Build configuration list for PBXProject "XInputSimulator" */;
148+
compatibilityVersion = "Xcode 3.2";
149+
developmentRegion = English;
150+
hasScannedForEncodings = 0;
151+
knownRegions = (
152+
en,
153+
);
154+
mainGroup = D2C6A1D11A8FD8CF00CAA80C;
155+
productRefGroup = D2C6A1DB1A8FD8CF00CAA80C /* Products */;
156+
projectDirPath = "";
157+
projectRoot = "";
158+
targets = (
159+
D2C6A1D91A8FD8CF00CAA80C /* XInputSimulator */,
160+
);
161+
};
162+
/* End PBXProject section */
163+
164+
/* Begin PBXSourcesBuildPhase section */
165+
D2C6A1D61A8FD8CF00CAA80C /* Sources */ = {
166+
isa = PBXSourcesBuildPhase;
167+
buildActionMask = 2147483647;
168+
files = (
169+
D2C6A1FB1A8FD9E900CAA80C /* xinputsimulatorimplmacos.cpp in Sources */,
170+
D2C6A1F81A8FD9E900CAA80C /* xinputsimulator.cpp in Sources */,
171+
D2C6A1F71A8FD9E900CAA80C /* notimplementedexception.cpp in Sources */,
172+
D2C6A1F91A8FD9E900CAA80C /* xinputsimulatorimpl.cpp in Sources */,
173+
D2C6A1FA1A8FD9E900CAA80C /* xinputsimulatorimpllinux.cpp in Sources */,
174+
D2C6A1FC1A8FD9E900CAA80C /* xinputsimulatorimplwin.cpp in Sources */,
175+
D2C6A1F61A8FD9E900CAA80C /* main.cpp in Sources */,
176+
);
177+
runOnlyForDeploymentPostprocessing = 0;
178+
};
179+
/* End PBXSourcesBuildPhase section */
180+
181+
/* Begin XCBuildConfiguration section */
182+
D2C6A1DF1A8FD8CF00CAA80C /* Debug */ = {
183+
isa = XCBuildConfiguration;
184+
buildSettings = {
185+
ALWAYS_SEARCH_USER_PATHS = NO;
186+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
187+
CLANG_CXX_LIBRARY = "libc++";
188+
CLANG_ENABLE_MODULES = YES;
189+
CLANG_ENABLE_OBJC_ARC = YES;
190+
CLANG_WARN_BOOL_CONVERSION = YES;
191+
CLANG_WARN_CONSTANT_CONVERSION = YES;
192+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
193+
CLANG_WARN_EMPTY_BODY = YES;
194+
CLANG_WARN_ENUM_CONVERSION = YES;
195+
CLANG_WARN_INT_CONVERSION = YES;
196+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
197+
CLANG_WARN_UNREACHABLE_CODE = YES;
198+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
199+
COPY_PHASE_STRIP = NO;
200+
ENABLE_STRICT_OBJC_MSGSEND = YES;
201+
GCC_C_LANGUAGE_STANDARD = gnu99;
202+
GCC_DYNAMIC_NO_PIC = NO;
203+
GCC_OPTIMIZATION_LEVEL = 0;
204+
GCC_PREPROCESSOR_DEFINITIONS = (
205+
"DEBUG=1",
206+
"$(inherited)",
207+
);
208+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
209+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
210+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
211+
GCC_WARN_UNDECLARED_SELECTOR = YES;
212+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
213+
GCC_WARN_UNUSED_FUNCTION = YES;
214+
GCC_WARN_UNUSED_VARIABLE = YES;
215+
MACOSX_DEPLOYMENT_TARGET = 10.10;
216+
MTL_ENABLE_DEBUG_INFO = YES;
217+
ONLY_ACTIVE_ARCH = YES;
218+
SDKROOT = macosx;
219+
};
220+
name = Debug;
221+
};
222+
D2C6A1E01A8FD8CF00CAA80C /* Release */ = {
223+
isa = XCBuildConfiguration;
224+
buildSettings = {
225+
ALWAYS_SEARCH_USER_PATHS = NO;
226+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
227+
CLANG_CXX_LIBRARY = "libc++";
228+
CLANG_ENABLE_MODULES = YES;
229+
CLANG_ENABLE_OBJC_ARC = YES;
230+
CLANG_WARN_BOOL_CONVERSION = YES;
231+
CLANG_WARN_CONSTANT_CONVERSION = YES;
232+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
233+
CLANG_WARN_EMPTY_BODY = YES;
234+
CLANG_WARN_ENUM_CONVERSION = YES;
235+
CLANG_WARN_INT_CONVERSION = YES;
236+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
237+
CLANG_WARN_UNREACHABLE_CODE = YES;
238+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
239+
COPY_PHASE_STRIP = YES;
240+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
241+
ENABLE_NS_ASSERTIONS = NO;
242+
ENABLE_STRICT_OBJC_MSGSEND = YES;
243+
GCC_C_LANGUAGE_STANDARD = gnu99;
244+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
245+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
246+
GCC_WARN_UNDECLARED_SELECTOR = YES;
247+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
248+
GCC_WARN_UNUSED_FUNCTION = YES;
249+
GCC_WARN_UNUSED_VARIABLE = YES;
250+
MACOSX_DEPLOYMENT_TARGET = 10.10;
251+
MTL_ENABLE_DEBUG_INFO = NO;
252+
SDKROOT = macosx;
253+
};
254+
name = Release;
255+
};
256+
D2C6A1E21A8FD8CF00CAA80C /* Debug */ = {
257+
isa = XCBuildConfiguration;
258+
buildSettings = {
259+
PRODUCT_NAME = "$(TARGET_NAME)";
260+
};
261+
name = Debug;
262+
};
263+
D2C6A1E31A8FD8CF00CAA80C /* Release */ = {
264+
isa = XCBuildConfiguration;
265+
buildSettings = {
266+
PRODUCT_NAME = "$(TARGET_NAME)";
267+
};
268+
name = Release;
269+
};
270+
/* End XCBuildConfiguration section */
271+
272+
/* Begin XCConfigurationList section */
273+
D2C6A1D51A8FD8CF00CAA80C /* Build configuration list for PBXProject "XInputSimulator" */ = {
274+
isa = XCConfigurationList;
275+
buildConfigurations = (
276+
D2C6A1DF1A8FD8CF00CAA80C /* Debug */,
277+
D2C6A1E01A8FD8CF00CAA80C /* Release */,
278+
);
279+
defaultConfigurationIsVisible = 0;
280+
defaultConfigurationName = Release;
281+
};
282+
D2C6A1E11A8FD8CF00CAA80C /* Build configuration list for PBXNativeTarget "XInputSimulator" */ = {
283+
isa = XCConfigurationList;
284+
buildConfigurations = (
285+
D2C6A1E21A8FD8CF00CAA80C /* Debug */,
286+
D2C6A1E31A8FD8CF00CAA80C /* Release */,
287+
);
288+
defaultConfigurationIsVisible = 0;
289+
};
290+
/* End XCConfigurationList section */
291+
};
292+
rootObject = D2C6A1D21A8FD8CF00CAA80C /* Project object */;
293+
}

XInputSimulator/XInputSimulator.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)