diff options
| author | Teddy Wing | 2018-10-04 14:13:44 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2018-10-04 14:13:44 +0200 | 
| commit | fb46a8b01ccf243b0caa360e360c43f1fc2df7de (patch) | |
| tree | a1172d45f6ec1a956a5c3f29213a71b914540e1f /DomeKey.xcodeproj/project.pbxproj | |
| parent | b18af59bdb84a038a413f0beab2eb40d30b6bae4 (diff) | |
| download | DomeKey-fb46a8b01ccf243b0caa360e360c43f1fc2df7de.tar.bz2 | |
Add a new `Mappings` class
We'll reload the mappings file here.
Diffstat (limited to 'DomeKey.xcodeproj/project.pbxproj')
| -rw-r--r-- | DomeKey.xcodeproj/project.pbxproj | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/DomeKey.xcodeproj/project.pbxproj b/DomeKey.xcodeproj/project.pbxproj index 50ca0e7..4c7f32a 100644 --- a/DomeKey.xcodeproj/project.pbxproj +++ b/DomeKey.xcodeproj/project.pbxproj @@ -10,6 +10,7 @@  		D110C9482122E2D80094F963 /* HeadphoneKey.m in Sources */ = {isa = PBXBuildFile; fileRef = D110C9472122E2D80094F963 /* HeadphoneKey.m */; };  		D110C94A2122F1ED0094F963 /* libddhid.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D160C32221197983007D1B50 /* libddhid.a */; };  		D11184622125206E00961687 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D11184612125206E00961687 /* AppDelegate.m */; }; +		D131C4D321663B6500801267 /* Mappings.m in Sources */ = {isa = PBXBuildFile; fileRef = D131C4D221663B6500801267 /* Mappings.m */; };  		D160C2A12118EF9D007D1B50 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = D160C2A02118EF9D007D1B50 /* main.m */; };  		D1E101FE2133FA0300B2CA29 /* KeyboardSimulator.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E101FD2133FA0300B2CA29 /* KeyboardSimulator.m */; };  		D1E1020821345E2300B2CA29 /* char_to_key_code.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E1020721345E2200B2CA29 /* char_to_key_code.m */; }; @@ -71,6 +72,8 @@  		D110C9472122E2D80094F963 /* HeadphoneKey.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HeadphoneKey.m; sourceTree = "<group>"; };  		D11184602125206E00961687 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };  		D11184612125206E00961687 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; }; +		D131C4D121663B6500801267 /* Mappings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mappings.h; sourceTree = "<group>"; }; +		D131C4D221663B6500801267 /* Mappings.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Mappings.m; sourceTree = "<group>"; };  		D160C29D2118EF9D007D1B50 /* DomeKey */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DomeKey; sourceTree = BUILT_PRODUCTS_DIR; };  		D160C2A02118EF9D007D1B50 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };  		D160C31521197983007D1B50 /* DDHidLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DDHidLib.xcodeproj; path = lib/DDHidLib/DDHidLib.xcodeproj; sourceTree = "<group>"; }; @@ -117,6 +120,8 @@  			isa = PBXGroup;  			children = (  				D110C9462122E2D80094F963 /* HeadphoneKey.h */, +				D131C4D121663B6500801267 /* Mappings.h */, +				D131C4D221663B6500801267 /* Mappings.m */,  				D110C9472122E2D80094F963 /* HeadphoneKey.m */,  				D1E101FC2133FA0300B2CA29 /* KeyboardSimulator.h */,  				D1E101FD2133FA0300B2CA29 /* KeyboardSimulator.m */, @@ -253,6 +258,7 @@  			isa = PBXSourcesBuildPhase;  			buildActionMask = 2147483647;  			files = ( +				D131C4D321663B6500801267 /* Mappings.m in Sources */,  				D110C9482122E2D80094F963 /* HeadphoneKey.m in Sources */,  				D160C2A12118EF9D007D1B50 /* main.m in Sources */,  				D1E1020821345E2300B2CA29 /* char_to_key_code.m in Sources */, | 
