reflexion 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (225) hide show
  1. checksums.yaml +7 -0
  2. data/.doc/ext/reflex/application.cpp +54 -39
  3. data/.doc/ext/reflex/capture_event.cpp +87 -0
  4. data/.doc/ext/reflex/draw_event.cpp +103 -0
  5. data/.doc/ext/reflex/event.cpp +73 -0
  6. data/.doc/ext/reflex/focus_event.cpp +98 -0
  7. data/.doc/ext/reflex/frame_event.cpp +133 -0
  8. data/.doc/ext/reflex/image_view.cpp +74 -0
  9. data/.doc/ext/reflex/key_event.cpp +124 -0
  10. data/.doc/ext/reflex/native.cpp +45 -6
  11. data/.doc/ext/reflex/pointer_event.cpp +181 -0
  12. data/.doc/ext/reflex/reflex.cpp +17 -41
  13. data/.doc/ext/reflex/scroll_event.cpp +141 -0
  14. data/.doc/ext/reflex/selector.cpp +135 -0
  15. data/.doc/ext/reflex/style.cpp +253 -0
  16. data/.doc/ext/reflex/style_length.cpp +133 -0
  17. data/.doc/ext/reflex/style_length2.cpp +149 -0
  18. data/.doc/ext/reflex/style_length4.cpp +192 -0
  19. data/.doc/ext/reflex/update_event.cpp +77 -0
  20. data/.doc/ext/reflex/view.cpp +408 -88
  21. data/.doc/ext/reflex/wheel_event.cpp +146 -0
  22. data/.doc/ext/reflex/window.cpp +95 -92
  23. data/Rakefile +6 -5
  24. data/VERSION +1 -1
  25. data/ext/reflex/application.cpp +67 -49
  26. data/ext/reflex/capture_event.cpp +92 -0
  27. data/ext/reflex/draw_event.cpp +110 -0
  28. data/ext/reflex/event.cpp +77 -0
  29. data/ext/reflex/extconf.rb +18 -68
  30. data/ext/reflex/focus_event.cpp +104 -0
  31. data/ext/reflex/frame_event.cpp +143 -0
  32. data/ext/reflex/image_view.cpp +77 -0
  33. data/ext/reflex/key_event.cpp +133 -0
  34. data/ext/reflex/native.cpp +45 -6
  35. data/ext/reflex/pointer_event.cpp +195 -0
  36. data/ext/reflex/reflex.cpp +21 -47
  37. data/ext/reflex/scroll_event.cpp +152 -0
  38. data/ext/reflex/selector.cpp +144 -0
  39. data/ext/reflex/style.cpp +277 -0
  40. data/ext/reflex/style_length.cpp +140 -0
  41. data/ext/reflex/style_length2.cpp +157 -0
  42. data/ext/reflex/style_length4.cpp +204 -0
  43. data/ext/reflex/update_event.cpp +81 -0
  44. data/ext/reflex/view.cpp +469 -114
  45. data/ext/reflex/wheel_event.cpp +158 -0
  46. data/ext/reflex/window.cpp +130 -123
  47. data/include/reflex/application.h +12 -7
  48. data/include/reflex/defs.h +13 -89
  49. data/include/reflex/event.h +260 -0
  50. data/include/reflex/exception.h +17 -11
  51. data/include/reflex/image_view.h +45 -0
  52. data/include/reflex/reflex.h +2 -6
  53. data/include/reflex/ruby/application.h +40 -13
  54. data/include/reflex/ruby/event.h +72 -0
  55. data/include/reflex/ruby/image_view.h +25 -0
  56. data/include/reflex/ruby/selector.h +27 -0
  57. data/include/reflex/ruby/style.h +27 -0
  58. data/include/reflex/ruby/style_length.h +37 -0
  59. data/include/reflex/ruby/view.h +193 -38
  60. data/include/reflex/ruby/window.h +123 -39
  61. data/include/reflex/ruby.h +3 -2
  62. data/include/reflex/selector.h +64 -0
  63. data/include/reflex/style.h +144 -0
  64. data/include/reflex/style_length.h +147 -0
  65. data/include/reflex/view.h +182 -19
  66. data/include/reflex/window.h +35 -19
  67. data/include/reflex.h +7 -0
  68. data/lib/reflex/application.rb +14 -5
  69. data/lib/reflex/arc_shape.rb +20 -0
  70. data/lib/reflex/button.rb +75 -0
  71. data/lib/reflex/capture_event.rb +37 -0
  72. data/lib/reflex/color.rb +13 -0
  73. data/lib/reflex/color_space.rb +13 -0
  74. data/lib/reflex/draw_event.rb +19 -0
  75. data/lib/reflex/ellipse_shape.rb +20 -0
  76. data/lib/reflex/ext.rb +1 -1
  77. data/lib/reflex/flags.rb +18 -0
  78. data/lib/reflex/focus_event.rb +38 -0
  79. data/lib/reflex/font.rb +13 -0
  80. data/lib/reflex/frame_event.rb +42 -0
  81. data/lib/reflex/helper.rb +87 -30
  82. data/lib/reflex/image_view.rb +25 -0
  83. data/lib/reflex/key_event.rb +38 -0
  84. data/lib/reflex/line_shape.rb +20 -0
  85. data/lib/reflex/list_view.rb +15 -0
  86. data/lib/reflex/model.rb +149 -0
  87. data/lib/reflex/model_owner.rb +57 -0
  88. data/lib/reflex/model_view.rb +22 -0
  89. data/lib/reflex/module.rb +11 -7
  90. data/lib/reflex/pointer_event.rb +85 -0
  91. data/lib/reflex/rect_shape.rb +20 -0
  92. data/lib/reflex/reflex.rb +13 -2
  93. data/lib/reflex/scroll_event.rb +19 -0
  94. data/lib/reflex/selector.rb +31 -0
  95. data/lib/reflex/shader.rb +13 -0
  96. data/lib/reflex/shape.rb +34 -0
  97. data/lib/reflex/style.rb +55 -0
  98. data/lib/reflex/style_length.rb +30 -0
  99. data/lib/reflex/style_length2.rb +34 -0
  100. data/lib/reflex/style_length4.rb +38 -0
  101. data/lib/reflex/text_view.rb +55 -0
  102. data/lib/reflex/update_event.rb +19 -0
  103. data/lib/reflex/view.rb +38 -4
  104. data/lib/reflex/wheel_event.rb +19 -0
  105. data/lib/reflex/window.rb +7 -5
  106. data/lib/reflex.rb +38 -1
  107. data/lib/reflexion/include.rb +5 -0
  108. data/lib/reflexion.rb +100 -0
  109. data/reflex.gemspec +3 -4
  110. data/samples/app.rb +13 -0
  111. data/samples/bats.rb +91 -0
  112. data/samples/checker.rb +36 -0
  113. data/{examples/ruby/shapes.rb → samples/fans.rb} +12 -16
  114. data/samples/fps.rb +46 -0
  115. data/samples/grid.rb +60 -0
  116. data/{examples/ruby → samples}/hello.rb +14 -16
  117. data/samples/image.rb +44 -0
  118. data/samples/ios/hello/hello/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  119. data/samples/ios/hello/hello/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
  120. data/samples/ios/hello/hello/en.lproj/InfoPlist.strings +2 -0
  121. data/samples/ios/hello/hello/hello-Info.plist +47 -0
  122. data/samples/ios/hello/hello/hello-Prefix.pch +10 -0
  123. data/samples/ios/hello/hello/main.cpp +79 -0
  124. data/samples/ios/hello/hello.xcodeproj/project.pbxproj +725 -0
  125. data/{examples/ruby → samples}/key.rb +11 -14
  126. data/samples/layout.rb +89 -0
  127. data/samples/model.rb +86 -0
  128. data/samples/osx/hello/hello/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
  129. data/samples/osx/hello/hello/en.lproj/Credits.rtf +29 -0
  130. data/samples/osx/hello/hello/en.lproj/InfoPlist.strings +2 -0
  131. data/samples/osx/hello/hello/hello-Info.plist +32 -0
  132. data/samples/osx/hello/hello/hello-Prefix.pch +3 -0
  133. data/samples/osx/hello/hello/main.cpp +79 -0
  134. data/samples/osx/hello/hello.xcodeproj/project.pbxproj +725 -0
  135. data/samples/reflexion/hello.rb +24 -0
  136. data/samples/reflexion/paint.rb +40 -0
  137. data/samples/reflexion/pulse.rb +34 -0
  138. data/samples/repl.rb +69 -0
  139. data/samples/shader.rb +41 -0
  140. data/samples/shapes.rb +30 -0
  141. data/{examples/ruby → samples}/text.rb +7 -8
  142. data/samples/tree.rb +71 -0
  143. data/samples/views.rb +41 -0
  144. data/samples/visuals.rb +22 -0
  145. data/src/event.cpp +225 -0
  146. data/src/exception.cpp +24 -15
  147. data/src/image_view.cpp +70 -0
  148. data/src/ios/app_delegate.h +17 -0
  149. data/src/ios/app_delegate.mm +120 -0
  150. data/src/ios/application.mm +116 -0
  151. data/src/{cocoa/applicationdata.h → ios/application_data.h} +6 -6
  152. data/src/ios/event.h +26 -0
  153. data/src/ios/event.mm +31 -0
  154. data/src/ios/native_window.h +37 -0
  155. data/src/ios/native_window.mm +220 -0
  156. data/src/ios/opengl_view.h +13 -0
  157. data/src/ios/opengl_view.mm +131 -0
  158. data/src/{cocoa → ios}/reflex.mm +8 -12
  159. data/src/ios/window.mm +303 -0
  160. data/src/ios/window_data.h +75 -0
  161. data/src/osx/app_delegate.h +17 -0
  162. data/src/{cocoa/cocoaapplication.mm → osx/app_delegate.mm} +90 -48
  163. data/src/osx/application.mm +132 -0
  164. data/src/osx/application_data.h +45 -0
  165. data/src/osx/event.h +42 -0
  166. data/src/osx/event.mm +112 -0
  167. data/src/osx/native_window.h +26 -0
  168. data/src/osx/native_window.mm +322 -0
  169. data/src/{cocoa/openglview.h → osx/opengl_view.h} +0 -4
  170. data/src/{cocoa/openglview.mm → osx/opengl_view.mm} +66 -23
  171. data/src/osx/reflex.mm +50 -0
  172. data/src/osx/window.mm +308 -0
  173. data/src/osx/window_data.h +75 -0
  174. data/src/selector.cpp +121 -0
  175. data/src/style.cpp +576 -0
  176. data/src/style_length.cpp +341 -0
  177. data/src/view.cpp +1228 -129
  178. data/src/win32/application.cpp +1 -1
  179. data/src/window.cpp +54 -26
  180. data/test/helper.rb +8 -4
  181. data/test/test_capture_event.rb +41 -0
  182. data/test/test_event.rb +20 -0
  183. data/test/test_has_frame.rb +45 -0
  184. data/test/test_model.rb +9 -0
  185. data/test/test_model_owner.rb +9 -0
  186. data/test/test_selector.rb +75 -0
  187. data/test/test_style.rb +70 -0
  188. data/test/test_style_length.rb +38 -0
  189. data/test/test_style_length2.rb +50 -0
  190. data/test/test_style_length4.rb +56 -0
  191. data/test/test_view.rb +97 -23
  192. data/test/test_window.rb +54 -46
  193. metadata +205 -84
  194. data/.doc/ext/reflex/defs.cpp +0 -8
  195. data/.doc/ext/reflex/key.cpp +0 -122
  196. data/.doc/ext/reflex/points.cpp +0 -151
  197. data/.gitignore +0 -14
  198. data/ChangeLog +0 -8
  199. data/examples/hello/.gitignore +0 -2
  200. data/examples/hello/Rakefile +0 -41
  201. data/examples/hello/main.cpp +0 -18
  202. data/examples/ruby/app.rb +0 -13
  203. data/examples/ruby/checker.rb +0 -41
  204. data/examples/ruby/fps.rb +0 -49
  205. data/examples/ruby/grid.rb +0 -65
  206. data/examples/ruby/views.rb +0 -88
  207. data/examples/ruby/visuals.rb +0 -27
  208. data/ext/reflex/defs.cpp +0 -8
  209. data/ext/reflex/key.cpp +0 -129
  210. data/ext/reflex/points.cpp +0 -161
  211. data/include/reflex/ruby/key.h +0 -39
  212. data/include/reflex/ruby/points.h +0 -39
  213. data/lib/reflex/visuals/string.rb +0 -53
  214. data/src/cocoa/application.mm +0 -101
  215. data/src/cocoa/cocoaapplication.h +0 -21
  216. data/src/cocoa/cocoawindow.h +0 -46
  217. data/src/cocoa/cocoawindow.mm +0 -230
  218. data/src/cocoa/defs.h +0 -34
  219. data/src/cocoa/defs.mm +0 -87
  220. data/src/cocoa/window.mm +0 -148
  221. data/src/cocoa/windowdata.h +0 -56
  222. data/src/defs.cpp +0 -47
  223. data/src/helper.h +0 -12
  224. data/src/reflex.cpp +0 -43
  225. /data/{README → README.md} +0 -0
@@ -0,0 +1,725 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 832CF767197F457C0024BB50 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832CF766197F457C0024BB50 /* main.cpp */; };
11
+ 8332B7B2195AF116001B79BD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8332B7B1195AF116001B79BD /* CoreText.framework */; };
12
+ 8332B7B4195AF5CD001B79BD /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8332B7B3195AF5CD001B79BD /* ImageIO.framework */; };
13
+ 8332B7B6195AF6D0001B79BD /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8332B7B5195AF6D0001B79BD /* MobileCoreServices.framework */; };
14
+ 834393FD196AE839001ECC57 /* program.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 834393FC196AE839001ECC57 /* program.cpp */; };
15
+ 8368864D194AA5B100923B8B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8368864C194AA5B100923B8B /* Foundation.framework */; };
16
+ 8368864F194AA5B100923B8B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8368864E194AA5B100923B8B /* CoreGraphics.framework */; };
17
+ 83688651194AA5B100923B8B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688650194AA5B100923B8B /* UIKit.framework */; };
18
+ 83688653194AA5B100923B8B /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688652194AA5B100923B8B /* GLKit.framework */; };
19
+ 83688655194AA5B100923B8B /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688654194AA5B100923B8B /* OpenGLES.framework */; };
20
+ 8368865B194AA5B100923B8B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83688659194AA5B100923B8B /* InfoPlist.strings */; };
21
+ 83688670194AA5B100923B8B /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8368866F194AA5B100923B8B /* Images.xcassets */; };
22
+ 83688678194AA5B100923B8B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8368864C194AA5B100923B8B /* Foundation.framework */; };
23
+ 83688679194AA5B100923B8B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688650194AA5B100923B8B /* UIKit.framework */; };
24
+ 83688692194AACF400923B8B /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8368868D194AACF400923B8B /* debug.cpp */; };
25
+ 83688693194AACF400923B8B /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8368868E194AACF400923B8B /* exception.cpp */; };
26
+ 83688694194AACF400923B8B /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8368868F194AACF400923B8B /* string.cpp */; };
27
+ 83688695194AACF400923B8B /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83688690194AACF400923B8B /* time.cpp */; };
28
+ 83688696194AACF400923B8B /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83688691194AACF400923B8B /* util.cpp */; };
29
+ 836886F4194AB07700923B8B /* bounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886C3194AB07600923B8B /* bounds.cpp */; };
30
+ 836886F6194AB07700923B8B /* bitmap.mm in Sources */ = {isa = PBXBuildFile; fileRef = 836886C6194AB07600923B8B /* bitmap.mm */; };
31
+ 836886F8194AB07700923B8B /* font.mm in Sources */ = {isa = PBXBuildFile; fileRef = 836886C8194AB07600923B8B /* font.mm */; };
32
+ 836886FA194AB07700923B8B /* helper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 836886CB194AB07600923B8B /* helper.mm */; };
33
+ 836886FC194AB07700923B8B /* opengl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 836886CD194AB07600923B8B /* opengl.mm */; };
34
+ 836886FE194AB07700923B8B /* rays.mm in Sources */ = {isa = PBXBuildFile; fileRef = 836886CF194AB07600923B8B /* rays.mm */; };
35
+ 83688700194AB07700923B8B /* color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886D1194AB07600923B8B /* color.cpp */; };
36
+ 83688702194AB07700923B8B /* color_space.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886D3194AB07600923B8B /* color_space.cpp */; };
37
+ 83688704194AB07700923B8B /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886D5194AB07600923B8B /* exception.cpp */; };
38
+ 83688706194AB07700923B8B /* frame_buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886D7194AB07600923B8B /* frame_buffer.cpp */; };
39
+ 83688708194AB07700923B8B /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886DA194AB07700923B8B /* image.cpp */; };
40
+ 8368870A194AB07700923B8B /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886DC194AB07700923B8B /* matrix.cpp */; };
41
+ 8368870C194AB07700923B8B /* opengl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886DE194AB07700923B8B /* opengl.cpp */; };
42
+ 8368870E194AB07700923B8B /* painter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886E0194AB07700923B8B /* painter.cpp */; };
43
+ 83688710194AB07700923B8B /* point.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886E2194AB07700923B8B /* point.cpp */; };
44
+ 83688714194AB07700923B8B /* render_buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886E7194AB07700923B8B /* render_buffer.cpp */; };
45
+ 83688718194AB07700923B8B /* texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836886EC194AB07700923B8B /* texture.cpp */; };
46
+ 8375D520196E841D00BCFDDC /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D4EE196E841C00BCFDDC /* event.cpp */; };
47
+ 8375D522196E841D00BCFDDC /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D4F0196E841C00BCFDDC /* exception.cpp */; };
48
+ 8375D524196E841D00BCFDDC /* image_view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D4F2196E841C00BCFDDC /* image_view.cpp */; };
49
+ 8375D537196E841D00BCFDDC /* selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D50E196E841C00BCFDDC /* selector.cpp */; };
50
+ 8375D539196E841D00BCFDDC /* style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D510196E841D00BCFDDC /* style.cpp */; };
51
+ 8375D53B196E841D00BCFDDC /* style_length.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D512196E841D00BCFDDC /* style_length.cpp */; };
52
+ 8375D53D196E841D00BCFDDC /* view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D514196E841D00BCFDDC /* view.cpp */; };
53
+ 8375D544196E841D00BCFDDC /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8375D51E196E841D00BCFDDC /* window.cpp */; };
54
+ 8375D556196ED83900BCFDDC /* application.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D549196ED83900BCFDDC /* application.mm */; };
55
+ 8375D557196ED83900BCFDDC /* app_delegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D54B196ED83900BCFDDC /* app_delegate.mm */; };
56
+ 8375D558196ED83900BCFDDC /* native_window.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D54D196ED83900BCFDDC /* native_window.mm */; };
57
+ 8375D559196ED83900BCFDDC /* event.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D54F196ED83900BCFDDC /* event.mm */; };
58
+ 8375D55A196ED83900BCFDDC /* opengl_view.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D551196ED83900BCFDDC /* opengl_view.mm */; };
59
+ 8375D55B196ED83900BCFDDC /* reflex.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D552196ED83900BCFDDC /* reflex.mm */; };
60
+ 8375D55C196ED83900BCFDDC /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D554196ED83900BCFDDC /* window.mm */; };
61
+ /* End PBXBuildFile section */
62
+
63
+ /* Begin PBXContainerItemProxy section */
64
+ 8368867A194AA5B100923B8B /* PBXContainerItemProxy */ = {
65
+ isa = PBXContainerItemProxy;
66
+ containerPortal = 83688641194AA5B100923B8B /* Project object */;
67
+ proxyType = 1;
68
+ remoteGlobalIDString = 83688648194AA5B100923B8B;
69
+ remoteInfo = hello;
70
+ };
71
+ /* End PBXContainerItemProxy section */
72
+
73
+ /* Begin PBXFileReference section */
74
+ 832CF766197F457C0024BB50 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
75
+ 8332B7B1195AF116001B79BD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
76
+ 8332B7B3195AF5CD001B79BD /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
77
+ 8332B7B5195AF6D0001B79BD /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
78
+ 834393FC196AE839001ECC57 /* program.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = program.cpp; path = ../../../../../rays/src/ios/program.cpp; sourceTree = "<group>"; };
79
+ 83688649194AA5B100923B8B /* hello.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = hello.app; sourceTree = BUILT_PRODUCTS_DIR; };
80
+ 8368864C194AA5B100923B8B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
81
+ 8368864E194AA5B100923B8B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
82
+ 83688650194AA5B100923B8B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
83
+ 83688652194AA5B100923B8B /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
84
+ 83688654194AA5B100923B8B /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
85
+ 83688658194AA5B100923B8B /* hello-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "hello-Info.plist"; sourceTree = "<group>"; };
86
+ 8368865A194AA5B100923B8B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
87
+ 8368865E194AA5B100923B8B /* hello-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "hello-Prefix.pch"; sourceTree = "<group>"; };
88
+ 8368866F194AA5B100923B8B /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
89
+ 83688675194AA5B100923B8B /* helloTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = helloTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
90
+ 8368868D194AACF400923B8B /* debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cpp; path = ../../../../../xot/src/debug.cpp; sourceTree = "<group>"; };
91
+ 8368868E194AACF400923B8B /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../../xot/src/exception.cpp; sourceTree = "<group>"; };
92
+ 8368868F194AACF400923B8B /* string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../../../../xot/src/string.cpp; sourceTree = "<group>"; };
93
+ 83688690194AACF400923B8B /* time.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = time.cpp; path = ../../../../../xot/src/time.cpp; sourceTree = "<group>"; };
94
+ 83688691194AACF400923B8B /* util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = util.cpp; path = ../../../../../xot/src/util.cpp; sourceTree = "<group>"; };
95
+ 83688698194AAD1800923B8B /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = debug.h; path = ../../../../../xot/include/xot/debug.h; sourceTree = "<group>"; };
96
+ 83688699194AAD1800923B8B /* defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = defs.h; path = ../../../../../xot/include/xot/defs.h; sourceTree = "<group>"; };
97
+ 8368869A194AAD1800923B8B /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = exception.h; path = ../../../../../xot/include/xot/exception.h; sourceTree = "<group>"; };
98
+ 8368869B194AAD1800923B8B /* pimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pimpl.h; path = ../../../../../xot/include/xot/pimpl.h; sourceTree = "<group>"; };
99
+ 8368869C194AAD1800923B8B /* ref.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ref.h; path = ../../../../../xot/include/xot/ref.h; sourceTree = "<group>"; };
100
+ 8368869D194AAD1800923B8B /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = string.h; path = ../../../../../xot/include/xot/string.h; sourceTree = "<group>"; };
101
+ 8368869E194AAD1800923B8B /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = time.h; path = ../../../../../xot/include/xot/time.h; sourceTree = "<group>"; };
102
+ 8368869F194AAD1800923B8B /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = util.h; path = ../../../../../xot/include/xot/util.h; sourceTree = "<group>"; };
103
+ 836886A0194AAD1800923B8B /* xot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xot.h; path = ../../../../../xot/include/xot.h; sourceTree = "<group>"; };
104
+ 836886A4194AB07600923B8B /* bitmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bitmap.h; path = ../../../../../rays/include/rays/bitmap.h; sourceTree = "<group>"; };
105
+ 836886A5194AB07600923B8B /* bounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bounds.h; path = ../../../../../rays/include/rays/bounds.h; sourceTree = "<group>"; };
106
+ 836886A6194AB07600923B8B /* color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = color.h; path = ../../../../../rays/include/rays/color.h; sourceTree = "<group>"; };
107
+ 836886A7194AB07600923B8B /* color_space.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = color_space.h; path = ../../../../../rays/include/rays/color_space.h; sourceTree = "<group>"; };
108
+ 836886A8194AB07600923B8B /* defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = defs.h; path = ../../../../../rays/include/rays/defs.h; sourceTree = "<group>"; };
109
+ 836886A9194AB07600923B8B /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = exception.h; path = ../../../../../rays/include/rays/exception.h; sourceTree = "<group>"; };
110
+ 836886AA194AB07600923B8B /* font.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = font.h; path = ../../../../../rays/include/rays/font.h; sourceTree = "<group>"; };
111
+ 836886AB194AB07600923B8B /* image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = image.h; path = ../../../../../rays/include/rays/image.h; sourceTree = "<group>"; };
112
+ 836886AC194AB07600923B8B /* matrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = matrix.h; path = ../../../../../rays/include/rays/matrix.h; sourceTree = "<group>"; };
113
+ 836886AD194AB07600923B8B /* opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = opengl.h; path = ../../../../../rays/include/rays/opengl.h; sourceTree = "<group>"; };
114
+ 836886AE194AB07600923B8B /* painter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = painter.h; path = ../../../../../rays/include/rays/painter.h; sourceTree = "<group>"; };
115
+ 836886AF194AB07600923B8B /* point.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = point.h; path = ../../../../../rays/include/rays/point.h; sourceTree = "<group>"; };
116
+ 836886B0194AB07600923B8B /* rays.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rays.h; path = ../../../../../rays/include/rays/rays.h; sourceTree = "<group>"; };
117
+ 836886BF194AB07600923B8B /* shader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = shader.h; path = ../../../../../rays/include/rays/shader.h; sourceTree = "<group>"; };
118
+ 836886C0194AB07600923B8B /* texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = texture.h; path = ../../../../../rays/include/rays/texture.h; sourceTree = "<group>"; };
119
+ 836886C1194AB07600923B8B /* rays.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rays.h; path = ../../../../../rays/include/rays.h; sourceTree = "<group>"; };
120
+ 836886C3194AB07600923B8B /* bounds.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bounds.cpp; path = ../../../../../rays/src/bounds.cpp; sourceTree = "<group>"; };
121
+ 836886C6194AB07600923B8B /* bitmap.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = bitmap.mm; path = ../../../../../rays/src/ios/bitmap.mm; sourceTree = "<group>"; };
122
+ 836886C8194AB07600923B8B /* font.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = font.mm; path = ../../../../../rays/src/ios/font.mm; sourceTree = "<group>"; };
123
+ 836886CA194AB07600923B8B /* helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = helper.h; path = ../../../../../rays/src/ios/helper.h; sourceTree = "<group>"; };
124
+ 836886CB194AB07600923B8B /* helper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = helper.mm; path = ../../../../../rays/src/ios/helper.mm; sourceTree = "<group>"; };
125
+ 836886CD194AB07600923B8B /* opengl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = opengl.mm; path = ../../../../../rays/src/ios/opengl.mm; sourceTree = "<group>"; };
126
+ 836886CF194AB07600923B8B /* rays.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = rays.mm; path = ../../../../../rays/src/ios/rays.mm; sourceTree = "<group>"; };
127
+ 836886D1194AB07600923B8B /* color.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = color.cpp; path = ../../../../../rays/src/color.cpp; sourceTree = "<group>"; };
128
+ 836886D3194AB07600923B8B /* color_space.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = color_space.cpp; path = ../../../../../rays/src/color_space.cpp; sourceTree = "<group>"; };
129
+ 836886D5194AB07600923B8B /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../../rays/src/exception.cpp; sourceTree = "<group>"; };
130
+ 836886D7194AB07600923B8B /* frame_buffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = frame_buffer.cpp; path = ../../../../../rays/src/frame_buffer.cpp; sourceTree = "<group>"; };
131
+ 836886D8194AB07600923B8B /* frame_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = frame_buffer.h; path = ../../../../../rays/src/frame_buffer.h; sourceTree = "<group>"; };
132
+ 836886DA194AB07700923B8B /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = image.cpp; path = ../../../../../rays/src/image.cpp; sourceTree = "<group>"; };
133
+ 836886DC194AB07700923B8B /* matrix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cpp; path = ../../../../../rays/src/matrix.cpp; sourceTree = "<group>"; };
134
+ 836886DE194AB07700923B8B /* opengl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = opengl.cpp; path = ../../../../../rays/src/opengl.cpp; sourceTree = "<group>"; };
135
+ 836886E0194AB07700923B8B /* painter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = painter.cpp; path = ../../../../../rays/src/painter.cpp; sourceTree = "<group>"; };
136
+ 836886E2194AB07700923B8B /* point.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = point.cpp; path = ../../../../../rays/src/point.cpp; sourceTree = "<group>"; };
137
+ 836886E5194AB07700923B8B /* program.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = program.h; path = ../../../../../rays/src/program.h; sourceTree = "<group>"; };
138
+ 836886E7194AB07700923B8B /* render_buffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_buffer.cpp; path = ../../../../../rays/src/render_buffer.cpp; sourceTree = "<group>"; };
139
+ 836886E8194AB07700923B8B /* render_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_buffer.h; path = ../../../../../rays/src/render_buffer.h; sourceTree = "<group>"; };
140
+ 836886EC194AB07700923B8B /* texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = texture.cpp; path = ../../../../../rays/src/texture.cpp; sourceTree = "<group>"; };
141
+ 8375D4D6196E83D300BCFDDC /* application.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = application.h; path = ../../../../include/reflex/application.h; sourceTree = "<group>"; };
142
+ 8375D4D7196E83D300BCFDDC /* defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = defs.h; path = ../../../../include/reflex/defs.h; sourceTree = "<group>"; };
143
+ 8375D4D8196E83D300BCFDDC /* event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = event.h; path = ../../../../include/reflex/event.h; sourceTree = "<group>"; };
144
+ 8375D4D9196E83D300BCFDDC /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = exception.h; path = ../../../../include/reflex/exception.h; sourceTree = "<group>"; };
145
+ 8375D4DA196E83D300BCFDDC /* image_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = image_view.h; path = ../../../../include/reflex/image_view.h; sourceTree = "<group>"; };
146
+ 8375D4DB196E83D300BCFDDC /* reflex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reflex.h; path = ../../../../include/reflex/reflex.h; sourceTree = "<group>"; };
147
+ 8375D4E7196E83D300BCFDDC /* selector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = selector.h; path = ../../../../include/reflex/selector.h; sourceTree = "<group>"; };
148
+ 8375D4E8196E83D300BCFDDC /* style.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = style.h; path = ../../../../include/reflex/style.h; sourceTree = "<group>"; };
149
+ 8375D4E9196E83D300BCFDDC /* style_length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = style_length.h; path = ../../../../include/reflex/style_length.h; sourceTree = "<group>"; };
150
+ 8375D4EA196E83D300BCFDDC /* view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = view.h; path = ../../../../include/reflex/view.h; sourceTree = "<group>"; };
151
+ 8375D4EB196E83D300BCFDDC /* window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = window.h; path = ../../../../include/reflex/window.h; sourceTree = "<group>"; };
152
+ 8375D4EC196E83D300BCFDDC /* reflex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reflex.h; path = ../../../../include/reflex.h; sourceTree = "<group>"; };
153
+ 8375D4EE196E841C00BCFDDC /* event.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = event.cpp; path = ../../../../src/event.cpp; sourceTree = "<group>"; };
154
+ 8375D4F0196E841C00BCFDDC /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../src/exception.cpp; sourceTree = "<group>"; };
155
+ 8375D4F2196E841C00BCFDDC /* image_view.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = image_view.cpp; path = ../../../../src/image_view.cpp; sourceTree = "<group>"; };
156
+ 8375D50E196E841C00BCFDDC /* selector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = selector.cpp; path = ../../../../src/selector.cpp; sourceTree = "<group>"; };
157
+ 8375D510196E841D00BCFDDC /* style.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = style.cpp; path = ../../../../src/style.cpp; sourceTree = "<group>"; };
158
+ 8375D512196E841D00BCFDDC /* style_length.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = style_length.cpp; path = ../../../../src/style_length.cpp; sourceTree = "<group>"; };
159
+ 8375D514196E841D00BCFDDC /* view.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = view.cpp; path = ../../../../src/view.cpp; sourceTree = "<group>"; };
160
+ 8375D51E196E841D00BCFDDC /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = window.cpp; path = ../../../../src/window.cpp; sourceTree = "<group>"; };
161
+ 8375D548196ED83900BCFDDC /* application_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = application_data.h; path = ../../../../src/ios/application_data.h; sourceTree = "<group>"; };
162
+ 8375D549196ED83900BCFDDC /* application.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = application.mm; path = ../../../../src/ios/application.mm; sourceTree = "<group>"; };
163
+ 8375D54A196ED83900BCFDDC /* app_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = app_delegate.h; path = ../../../../src/ios/app_delegate.h; sourceTree = "<group>"; };
164
+ 8375D54B196ED83900BCFDDC /* app_delegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = app_delegate.mm; path = ../../../../src/ios/app_delegate.mm; sourceTree = "<group>"; };
165
+ 8375D54C196ED83900BCFDDC /* native_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = native_window.h; path = ../../../../src/ios/native_window.h; sourceTree = "<group>"; };
166
+ 8375D54D196ED83900BCFDDC /* native_window.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = native_window.mm; path = ../../../../src/ios/native_window.mm; sourceTree = "<group>"; };
167
+ 8375D54E196ED83900BCFDDC /* event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = event.h; path = ../../../../src/ios/event.h; sourceTree = "<group>"; };
168
+ 8375D54F196ED83900BCFDDC /* event.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = event.mm; path = ../../../../src/ios/event.mm; sourceTree = "<group>"; };
169
+ 8375D550196ED83900BCFDDC /* opengl_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = opengl_view.h; path = ../../../../src/ios/opengl_view.h; sourceTree = "<group>"; };
170
+ 8375D551196ED83900BCFDDC /* opengl_view.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = opengl_view.mm; path = ../../../../src/ios/opengl_view.mm; sourceTree = "<group>"; };
171
+ 8375D552196ED83900BCFDDC /* reflex.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = reflex.mm; path = ../../../../src/ios/reflex.mm; sourceTree = "<group>"; };
172
+ 8375D553196ED83900BCFDDC /* window_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = window_data.h; path = ../../../../src/ios/window_data.h; sourceTree = "<group>"; };
173
+ 8375D554196ED83900BCFDDC /* window.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = window.mm; path = ../../../../src/ios/window.mm; sourceTree = "<group>"; };
174
+ /* End PBXFileReference section */
175
+
176
+ /* Begin PBXFrameworksBuildPhase section */
177
+ 83688646194AA5B100923B8B /* Frameworks */ = {
178
+ isa = PBXFrameworksBuildPhase;
179
+ buildActionMask = 2147483647;
180
+ files = (
181
+ 8332B7B6195AF6D0001B79BD /* MobileCoreServices.framework in Frameworks */,
182
+ 8332B7B4195AF5CD001B79BD /* ImageIO.framework in Frameworks */,
183
+ 8332B7B2195AF116001B79BD /* CoreText.framework in Frameworks */,
184
+ 83688655194AA5B100923B8B /* OpenGLES.framework in Frameworks */,
185
+ 8368864F194AA5B100923B8B /* CoreGraphics.framework in Frameworks */,
186
+ 83688651194AA5B100923B8B /* UIKit.framework in Frameworks */,
187
+ 83688653194AA5B100923B8B /* GLKit.framework in Frameworks */,
188
+ 8368864D194AA5B100923B8B /* Foundation.framework in Frameworks */,
189
+ );
190
+ runOnlyForDeploymentPostprocessing = 0;
191
+ };
192
+ 83688672194AA5B100923B8B /* Frameworks */ = {
193
+ isa = PBXFrameworksBuildPhase;
194
+ buildActionMask = 2147483647;
195
+ files = (
196
+ 83688679194AA5B100923B8B /* UIKit.framework in Frameworks */,
197
+ 83688678194AA5B100923B8B /* Foundation.framework in Frameworks */,
198
+ );
199
+ runOnlyForDeploymentPostprocessing = 0;
200
+ };
201
+ /* End PBXFrameworksBuildPhase section */
202
+
203
+ /* Begin PBXGroup section */
204
+ 83688640194AA5B100923B8B = {
205
+ isa = PBXGroup;
206
+ children = (
207
+ 83688656194AA5B100923B8B /* hello */,
208
+ 8368864B194AA5B100923B8B /* Frameworks */,
209
+ 8368864A194AA5B100923B8B /* Products */,
210
+ );
211
+ sourceTree = "<group>";
212
+ };
213
+ 8368864A194AA5B100923B8B /* Products */ = {
214
+ isa = PBXGroup;
215
+ children = (
216
+ 83688649194AA5B100923B8B /* hello.app */,
217
+ 83688675194AA5B100923B8B /* helloTests.xctest */,
218
+ );
219
+ name = Products;
220
+ sourceTree = "<group>";
221
+ };
222
+ 8368864B194AA5B100923B8B /* Frameworks */ = {
223
+ isa = PBXGroup;
224
+ children = (
225
+ 8332B7B5195AF6D0001B79BD /* MobileCoreServices.framework */,
226
+ 8332B7B3195AF5CD001B79BD /* ImageIO.framework */,
227
+ 8332B7B1195AF116001B79BD /* CoreText.framework */,
228
+ 8368864C194AA5B100923B8B /* Foundation.framework */,
229
+ 8368864E194AA5B100923B8B /* CoreGraphics.framework */,
230
+ 83688650194AA5B100923B8B /* UIKit.framework */,
231
+ 83688652194AA5B100923B8B /* GLKit.framework */,
232
+ 83688654194AA5B100923B8B /* OpenGLES.framework */,
233
+ );
234
+ name = Frameworks;
235
+ sourceTree = "<group>";
236
+ };
237
+ 83688656194AA5B100923B8B /* hello */ = {
238
+ isa = PBXGroup;
239
+ children = (
240
+ 836886A1194AB05900923B8B /* rays */,
241
+ 8375D4D2196E839000BCFDDC /* reflex */,
242
+ 8368868C194AACCA00923B8B /* xot */,
243
+ 83688657194AA5B100923B8B /* etc */,
244
+ 832CF766197F457C0024BB50 /* main.cpp */,
245
+ );
246
+ path = hello;
247
+ sourceTree = "<group>";
248
+ };
249
+ 83688657194AA5B100923B8B /* etc */ = {
250
+ isa = PBXGroup;
251
+ children = (
252
+ 8368866F194AA5B100923B8B /* Images.xcassets */,
253
+ 83688658194AA5B100923B8B /* hello-Info.plist */,
254
+ 83688659194AA5B100923B8B /* InfoPlist.strings */,
255
+ 8368865E194AA5B100923B8B /* hello-Prefix.pch */,
256
+ );
257
+ name = etc;
258
+ sourceTree = "<group>";
259
+ };
260
+ 8368868C194AACCA00923B8B /* xot */ = {
261
+ isa = PBXGroup;
262
+ children = (
263
+ 8368868D194AACF400923B8B /* debug.cpp */,
264
+ 83688698194AAD1800923B8B /* debug.h */,
265
+ 83688699194AAD1800923B8B /* defs.h */,
266
+ 8368868E194AACF400923B8B /* exception.cpp */,
267
+ 8368869A194AAD1800923B8B /* exception.h */,
268
+ 8368869B194AAD1800923B8B /* pimpl.h */,
269
+ 8368869C194AAD1800923B8B /* ref.h */,
270
+ 8368868F194AACF400923B8B /* string.cpp */,
271
+ 8368869D194AAD1800923B8B /* string.h */,
272
+ 83688690194AACF400923B8B /* time.cpp */,
273
+ 8368869E194AAD1800923B8B /* time.h */,
274
+ 83688691194AACF400923B8B /* util.cpp */,
275
+ 8368869F194AAD1800923B8B /* util.h */,
276
+ 836886A0194AAD1800923B8B /* xot.h */,
277
+ );
278
+ name = xot;
279
+ sourceTree = "<group>";
280
+ };
281
+ 836886A1194AB05900923B8B /* rays */ = {
282
+ isa = PBXGroup;
283
+ children = (
284
+ 836886A4194AB07600923B8B /* bitmap.h */,
285
+ 836886C6194AB07600923B8B /* bitmap.mm */,
286
+ 836886C3194AB07600923B8B /* bounds.cpp */,
287
+ 836886A5194AB07600923B8B /* bounds.h */,
288
+ 836886D1194AB07600923B8B /* color.cpp */,
289
+ 836886A6194AB07600923B8B /* color.h */,
290
+ 836886D3194AB07600923B8B /* color_space.cpp */,
291
+ 836886A7194AB07600923B8B /* color_space.h */,
292
+ 836886A8194AB07600923B8B /* defs.h */,
293
+ 836886D5194AB07600923B8B /* exception.cpp */,
294
+ 836886A9194AB07600923B8B /* exception.h */,
295
+ 836886AA194AB07600923B8B /* font.h */,
296
+ 836886C8194AB07600923B8B /* font.mm */,
297
+ 836886D7194AB07600923B8B /* frame_buffer.cpp */,
298
+ 836886D8194AB07600923B8B /* frame_buffer.h */,
299
+ 836886CA194AB07600923B8B /* helper.h */,
300
+ 836886CB194AB07600923B8B /* helper.mm */,
301
+ 836886DA194AB07700923B8B /* image.cpp */,
302
+ 836886AB194AB07600923B8B /* image.h */,
303
+ 836886DC194AB07700923B8B /* matrix.cpp */,
304
+ 836886AC194AB07600923B8B /* matrix.h */,
305
+ 836886DE194AB07700923B8B /* opengl.cpp */,
306
+ 836886AD194AB07600923B8B /* opengl.h */,
307
+ 836886CD194AB07600923B8B /* opengl.mm */,
308
+ 836886E0194AB07700923B8B /* painter.cpp */,
309
+ 836886AE194AB07600923B8B /* painter.h */,
310
+ 836886E2194AB07700923B8B /* point.cpp */,
311
+ 836886AF194AB07600923B8B /* point.h */,
312
+ 834393FC196AE839001ECC57 /* program.cpp */,
313
+ 836886E5194AB07700923B8B /* program.h */,
314
+ 836886C1194AB07600923B8B /* rays.h */,
315
+ 836886B0194AB07600923B8B /* rays.h */,
316
+ 836886CF194AB07600923B8B /* rays.mm */,
317
+ 836886E7194AB07700923B8B /* render_buffer.cpp */,
318
+ 836886E8194AB07700923B8B /* render_buffer.h */,
319
+ 836886BF194AB07600923B8B /* shader.h */,
320
+ 836886EC194AB07700923B8B /* texture.cpp */,
321
+ 836886C0194AB07600923B8B /* texture.h */,
322
+ );
323
+ name = rays;
324
+ sourceTree = "<group>";
325
+ };
326
+ 8375D4D2196E839000BCFDDC /* reflex */ = {
327
+ isa = PBXGroup;
328
+ children = (
329
+ 8375D4D6196E83D300BCFDDC /* application.h */,
330
+ 8375D549196ED83900BCFDDC /* application.mm */,
331
+ 8375D548196ED83900BCFDDC /* application_data.h */,
332
+ 8375D54A196ED83900BCFDDC /* app_delegate.h */,
333
+ 8375D54B196ED83900BCFDDC /* app_delegate.mm */,
334
+ 8375D54C196ED83900BCFDDC /* native_window.h */,
335
+ 8375D54D196ED83900BCFDDC /* native_window.mm */,
336
+ 8375D4D7196E83D300BCFDDC /* defs.h */,
337
+ 8375D4EE196E841C00BCFDDC /* event.cpp */,
338
+ 8375D54E196ED83900BCFDDC /* event.h */,
339
+ 8375D4D8196E83D300BCFDDC /* event.h */,
340
+ 8375D54F196ED83900BCFDDC /* event.mm */,
341
+ 8375D4F0196E841C00BCFDDC /* exception.cpp */,
342
+ 8375D4D9196E83D300BCFDDC /* exception.h */,
343
+ 8375D4F2196E841C00BCFDDC /* image_view.cpp */,
344
+ 8375D4DA196E83D300BCFDDC /* image_view.h */,
345
+ 8375D550196ED83900BCFDDC /* opengl_view.h */,
346
+ 8375D551196ED83900BCFDDC /* opengl_view.mm */,
347
+ 8375D4EC196E83D300BCFDDC /* reflex.h */,
348
+ 8375D4DB196E83D300BCFDDC /* reflex.h */,
349
+ 8375D552196ED83900BCFDDC /* reflex.mm */,
350
+ 8375D50E196E841C00BCFDDC /* selector.cpp */,
351
+ 8375D4E7196E83D300BCFDDC /* selector.h */,
352
+ 8375D510196E841D00BCFDDC /* style.cpp */,
353
+ 8375D4E8196E83D300BCFDDC /* style.h */,
354
+ 8375D512196E841D00BCFDDC /* style_length.cpp */,
355
+ 8375D4E9196E83D300BCFDDC /* style_length.h */,
356
+ 8375D514196E841D00BCFDDC /* view.cpp */,
357
+ 8375D4EA196E83D300BCFDDC /* view.h */,
358
+ 8375D51E196E841D00BCFDDC /* window.cpp */,
359
+ 8375D4EB196E83D300BCFDDC /* window.h */,
360
+ 8375D554196ED83900BCFDDC /* window.mm */,
361
+ 8375D553196ED83900BCFDDC /* window_data.h */,
362
+ );
363
+ name = reflex;
364
+ sourceTree = "<group>";
365
+ };
366
+ /* End PBXGroup section */
367
+
368
+ /* Begin PBXNativeTarget section */
369
+ 83688648194AA5B100923B8B /* hello */ = {
370
+ isa = PBXNativeTarget;
371
+ buildConfigurationList = 83688686194AA5B100923B8B /* Build configuration list for PBXNativeTarget "hello" */;
372
+ buildPhases = (
373
+ 83688645194AA5B100923B8B /* Sources */,
374
+ 83688646194AA5B100923B8B /* Frameworks */,
375
+ 83688647194AA5B100923B8B /* Resources */,
376
+ );
377
+ buildRules = (
378
+ );
379
+ dependencies = (
380
+ );
381
+ name = hello;
382
+ productName = hello;
383
+ productReference = 83688649194AA5B100923B8B /* hello.app */;
384
+ productType = "com.apple.product-type.application";
385
+ };
386
+ 83688674194AA5B100923B8B /* helloTests */ = {
387
+ isa = PBXNativeTarget;
388
+ buildConfigurationList = 83688689194AA5B100923B8B /* Build configuration list for PBXNativeTarget "helloTests" */;
389
+ buildPhases = (
390
+ 83688671194AA5B100923B8B /* Sources */,
391
+ 83688672194AA5B100923B8B /* Frameworks */,
392
+ 83688673194AA5B100923B8B /* Resources */,
393
+ );
394
+ buildRules = (
395
+ );
396
+ dependencies = (
397
+ 8368867B194AA5B100923B8B /* PBXTargetDependency */,
398
+ );
399
+ name = helloTests;
400
+ productName = helloTests;
401
+ productReference = 83688675194AA5B100923B8B /* helloTests.xctest */;
402
+ productType = "com.apple.product-type.bundle.unit-test";
403
+ };
404
+ /* End PBXNativeTarget section */
405
+
406
+ /* Begin PBXProject section */
407
+ 83688641194AA5B100923B8B /* Project object */ = {
408
+ isa = PBXProject;
409
+ attributes = {
410
+ LastUpgradeCheck = 0510;
411
+ ORGANIZATIONNAME = xord.org;
412
+ TargetAttributes = {
413
+ 83688674194AA5B100923B8B = {
414
+ TestTargetID = 83688648194AA5B100923B8B;
415
+ };
416
+ };
417
+ };
418
+ buildConfigurationList = 83688644194AA5B100923B8B /* Build configuration list for PBXProject "hello" */;
419
+ compatibilityVersion = "Xcode 3.2";
420
+ developmentRegion = English;
421
+ hasScannedForEncodings = 0;
422
+ knownRegions = (
423
+ en,
424
+ Base,
425
+ );
426
+ mainGroup = 83688640194AA5B100923B8B;
427
+ productRefGroup = 8368864A194AA5B100923B8B /* Products */;
428
+ projectDirPath = "";
429
+ projectRoot = "";
430
+ targets = (
431
+ 83688648194AA5B100923B8B /* hello */,
432
+ 83688674194AA5B100923B8B /* helloTests */,
433
+ );
434
+ };
435
+ /* End PBXProject section */
436
+
437
+ /* Begin PBXResourcesBuildPhase section */
438
+ 83688647194AA5B100923B8B /* Resources */ = {
439
+ isa = PBXResourcesBuildPhase;
440
+ buildActionMask = 2147483647;
441
+ files = (
442
+ 83688670194AA5B100923B8B /* Images.xcassets in Resources */,
443
+ 8368865B194AA5B100923B8B /* InfoPlist.strings in Resources */,
444
+ );
445
+ runOnlyForDeploymentPostprocessing = 0;
446
+ };
447
+ 83688673194AA5B100923B8B /* Resources */ = {
448
+ isa = PBXResourcesBuildPhase;
449
+ buildActionMask = 2147483647;
450
+ files = (
451
+ );
452
+ runOnlyForDeploymentPostprocessing = 0;
453
+ };
454
+ /* End PBXResourcesBuildPhase section */
455
+
456
+ /* Begin PBXSourcesBuildPhase section */
457
+ 83688645194AA5B100923B8B /* Sources */ = {
458
+ isa = PBXSourcesBuildPhase;
459
+ buildActionMask = 2147483647;
460
+ files = (
461
+ 8368870A194AB07700923B8B /* matrix.cpp in Sources */,
462
+ 8375D556196ED83900BCFDDC /* application.mm in Sources */,
463
+ 83688700194AB07700923B8B /* color.cpp in Sources */,
464
+ 8375D544196E841D00BCFDDC /* window.cpp in Sources */,
465
+ 83688694194AACF400923B8B /* string.cpp in Sources */,
466
+ 836886FA194AB07700923B8B /* helper.mm in Sources */,
467
+ 8375D55A196ED83900BCFDDC /* opengl_view.mm in Sources */,
468
+ 836886FC194AB07700923B8B /* opengl.mm in Sources */,
469
+ 83688695194AACF400923B8B /* time.cpp in Sources */,
470
+ 8375D537196E841D00BCFDDC /* selector.cpp in Sources */,
471
+ 836886F4194AB07700923B8B /* bounds.cpp in Sources */,
472
+ 8375D520196E841D00BCFDDC /* event.cpp in Sources */,
473
+ 8375D55B196ED83900BCFDDC /* reflex.mm in Sources */,
474
+ 83688692194AACF400923B8B /* debug.cpp in Sources */,
475
+ 83688710194AB07700923B8B /* point.cpp in Sources */,
476
+ 834393FD196AE839001ECC57 /* program.cpp in Sources */,
477
+ 8375D524196E841D00BCFDDC /* image_view.cpp in Sources */,
478
+ 83688718194AB07700923B8B /* texture.cpp in Sources */,
479
+ 83688714194AB07700923B8B /* render_buffer.cpp in Sources */,
480
+ 83688704194AB07700923B8B /* exception.cpp in Sources */,
481
+ 83688706194AB07700923B8B /* frame_buffer.cpp in Sources */,
482
+ 8375D522196E841D00BCFDDC /* exception.cpp in Sources */,
483
+ 8375D53B196E841D00BCFDDC /* style_length.cpp in Sources */,
484
+ 8368870C194AB07700923B8B /* opengl.cpp in Sources */,
485
+ 836886FE194AB07700923B8B /* rays.mm in Sources */,
486
+ 8375D559196ED83900BCFDDC /* event.mm in Sources */,
487
+ 8375D557196ED83900BCFDDC /* app_delegate.mm in Sources */,
488
+ 83688702194AB07700923B8B /* color_space.cpp in Sources */,
489
+ 8375D558196ED83900BCFDDC /* native_window.mm in Sources */,
490
+ 832CF767197F457C0024BB50 /* main.cpp in Sources */,
491
+ 83688708194AB07700923B8B /* image.cpp in Sources */,
492
+ 836886F8194AB07700923B8B /* font.mm in Sources */,
493
+ 8368870E194AB07700923B8B /* painter.cpp in Sources */,
494
+ 8375D55C196ED83900BCFDDC /* window.mm in Sources */,
495
+ 8375D539196E841D00BCFDDC /* style.cpp in Sources */,
496
+ 8375D53D196E841D00BCFDDC /* view.cpp in Sources */,
497
+ 83688693194AACF400923B8B /* exception.cpp in Sources */,
498
+ 836886F6194AB07700923B8B /* bitmap.mm in Sources */,
499
+ 83688696194AACF400923B8B /* util.cpp in Sources */,
500
+ );
501
+ runOnlyForDeploymentPostprocessing = 0;
502
+ };
503
+ 83688671194AA5B100923B8B /* Sources */ = {
504
+ isa = PBXSourcesBuildPhase;
505
+ buildActionMask = 2147483647;
506
+ files = (
507
+ );
508
+ runOnlyForDeploymentPostprocessing = 0;
509
+ };
510
+ /* End PBXSourcesBuildPhase section */
511
+
512
+ /* Begin PBXTargetDependency section */
513
+ 8368867B194AA5B100923B8B /* PBXTargetDependency */ = {
514
+ isa = PBXTargetDependency;
515
+ target = 83688648194AA5B100923B8B /* hello */;
516
+ targetProxy = 8368867A194AA5B100923B8B /* PBXContainerItemProxy */;
517
+ };
518
+ /* End PBXTargetDependency section */
519
+
520
+ /* Begin PBXVariantGroup section */
521
+ 83688659194AA5B100923B8B /* InfoPlist.strings */ = {
522
+ isa = PBXVariantGroup;
523
+ children = (
524
+ 8368865A194AA5B100923B8B /* en */,
525
+ );
526
+ name = InfoPlist.strings;
527
+ sourceTree = "<group>";
528
+ };
529
+ /* End PBXVariantGroup section */
530
+
531
+ /* Begin XCBuildConfiguration section */
532
+ 83688684194AA5B100923B8B /* Debug */ = {
533
+ isa = XCBuildConfiguration;
534
+ buildSettings = {
535
+ ALWAYS_SEARCH_USER_PATHS = NO;
536
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
537
+ CLANG_CXX_LIBRARY = "libc++";
538
+ CLANG_ENABLE_MODULES = YES;
539
+ CLANG_ENABLE_OBJC_ARC = YES;
540
+ CLANG_WARN_BOOL_CONVERSION = YES;
541
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
542
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
543
+ CLANG_WARN_EMPTY_BODY = YES;
544
+ CLANG_WARN_ENUM_CONVERSION = YES;
545
+ CLANG_WARN_INT_CONVERSION = YES;
546
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
547
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
548
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
549
+ COPY_PHASE_STRIP = NO;
550
+ GCC_C_LANGUAGE_STANDARD = gnu99;
551
+ GCC_DYNAMIC_NO_PIC = NO;
552
+ GCC_OPTIMIZATION_LEVEL = 0;
553
+ GCC_PREPROCESSOR_DEFINITIONS = (
554
+ "DEBUG=1",
555
+ "$(inherited)",
556
+ );
557
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
558
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
559
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
560
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
561
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
562
+ GCC_WARN_UNUSED_FUNCTION = YES;
563
+ GCC_WARN_UNUSED_VARIABLE = YES;
564
+ IPHONEOS_DEPLOYMENT_TARGET = 7.0;
565
+ ONLY_ACTIVE_ARCH = YES;
566
+ SDKROOT = iphoneos;
567
+ TARGETED_DEVICE_FAMILY = "1,2";
568
+ };
569
+ name = Debug;
570
+ };
571
+ 83688685194AA5B100923B8B /* Release */ = {
572
+ isa = XCBuildConfiguration;
573
+ buildSettings = {
574
+ ALWAYS_SEARCH_USER_PATHS = NO;
575
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
576
+ CLANG_CXX_LIBRARY = "libc++";
577
+ CLANG_ENABLE_MODULES = YES;
578
+ CLANG_ENABLE_OBJC_ARC = YES;
579
+ CLANG_WARN_BOOL_CONVERSION = YES;
580
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
581
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
582
+ CLANG_WARN_EMPTY_BODY = YES;
583
+ CLANG_WARN_ENUM_CONVERSION = YES;
584
+ CLANG_WARN_INT_CONVERSION = YES;
585
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
586
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
587
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
588
+ COPY_PHASE_STRIP = YES;
589
+ ENABLE_NS_ASSERTIONS = NO;
590
+ GCC_C_LANGUAGE_STANDARD = gnu99;
591
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
592
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
593
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
594
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
595
+ GCC_WARN_UNUSED_FUNCTION = YES;
596
+ GCC_WARN_UNUSED_VARIABLE = YES;
597
+ IPHONEOS_DEPLOYMENT_TARGET = 7.0;
598
+ SDKROOT = iphoneos;
599
+ TARGETED_DEVICE_FAMILY = "1,2";
600
+ VALIDATE_PRODUCT = YES;
601
+ };
602
+ name = Release;
603
+ };
604
+ 83688687194AA5B100923B8B /* Debug */ = {
605
+ isa = XCBuildConfiguration;
606
+ buildSettings = {
607
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
608
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
609
+ CLANG_ENABLE_OBJC_ARC = NO;
610
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
611
+ GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
612
+ GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "IOS=1";
613
+ HEADER_SEARCH_PATHS = (
614
+ ../../../../reflex/include,
615
+ ../../../../rays/include,
616
+ ../../../../xot/include,
617
+ /usr/local/Cellar/boost/1.53.0/include,
618
+ "$(inherited)",
619
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
620
+ );
621
+ INFOPLIST_FILE = "hello/hello-Info.plist";
622
+ PRODUCT_NAME = "$(TARGET_NAME)";
623
+ USER_HEADER_SEARCH_PATHS = "";
624
+ WRAPPER_EXTENSION = app;
625
+ };
626
+ name = Debug;
627
+ };
628
+ 83688688194AA5B100923B8B /* Release */ = {
629
+ isa = XCBuildConfiguration;
630
+ buildSettings = {
631
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
632
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
633
+ CLANG_ENABLE_OBJC_ARC = NO;
634
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
635
+ GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
636
+ GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "IOS=1";
637
+ HEADER_SEARCH_PATHS = (
638
+ ../../../../reflex/include,
639
+ ../../../../rays/include,
640
+ ../../../../xot/include,
641
+ /usr/local/Cellar/boost/1.53.0/include,
642
+ "$(inherited)",
643
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
644
+ );
645
+ INFOPLIST_FILE = "hello/hello-Info.plist";
646
+ PRODUCT_NAME = "$(TARGET_NAME)";
647
+ USER_HEADER_SEARCH_PATHS = "";
648
+ WRAPPER_EXTENSION = app;
649
+ };
650
+ name = Release;
651
+ };
652
+ 8368868A194AA5B100923B8B /* Debug */ = {
653
+ isa = XCBuildConfiguration;
654
+ buildSettings = {
655
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/hello";
656
+ FRAMEWORK_SEARCH_PATHS = (
657
+ "$(SDKROOT)/Developer/Library/Frameworks",
658
+ "$(inherited)",
659
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
660
+ );
661
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
662
+ GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
663
+ GCC_PREPROCESSOR_DEFINITIONS = (
664
+ "DEBUG=1",
665
+ "$(inherited)",
666
+ );
667
+ INFOPLIST_FILE = "helloTests/helloTests-Info.plist";
668
+ PRODUCT_NAME = "$(TARGET_NAME)";
669
+ TEST_HOST = "$(BUNDLE_LOADER)";
670
+ WRAPPER_EXTENSION = xctest;
671
+ };
672
+ name = Debug;
673
+ };
674
+ 8368868B194AA5B100923B8B /* Release */ = {
675
+ isa = XCBuildConfiguration;
676
+ buildSettings = {
677
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/hello";
678
+ FRAMEWORK_SEARCH_PATHS = (
679
+ "$(SDKROOT)/Developer/Library/Frameworks",
680
+ "$(inherited)",
681
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
682
+ );
683
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
684
+ GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
685
+ INFOPLIST_FILE = "helloTests/helloTests-Info.plist";
686
+ PRODUCT_NAME = "$(TARGET_NAME)";
687
+ TEST_HOST = "$(BUNDLE_LOADER)";
688
+ WRAPPER_EXTENSION = xctest;
689
+ };
690
+ name = Release;
691
+ };
692
+ /* End XCBuildConfiguration section */
693
+
694
+ /* Begin XCConfigurationList section */
695
+ 83688644194AA5B100923B8B /* Build configuration list for PBXProject "hello" */ = {
696
+ isa = XCConfigurationList;
697
+ buildConfigurations = (
698
+ 83688684194AA5B100923B8B /* Debug */,
699
+ 83688685194AA5B100923B8B /* Release */,
700
+ );
701
+ defaultConfigurationIsVisible = 0;
702
+ defaultConfigurationName = Release;
703
+ };
704
+ 83688686194AA5B100923B8B /* Build configuration list for PBXNativeTarget "hello" */ = {
705
+ isa = XCConfigurationList;
706
+ buildConfigurations = (
707
+ 83688687194AA5B100923B8B /* Debug */,
708
+ 83688688194AA5B100923B8B /* Release */,
709
+ );
710
+ defaultConfigurationIsVisible = 0;
711
+ defaultConfigurationName = Release;
712
+ };
713
+ 83688689194AA5B100923B8B /* Build configuration list for PBXNativeTarget "helloTests" */ = {
714
+ isa = XCConfigurationList;
715
+ buildConfigurations = (
716
+ 8368868A194AA5B100923B8B /* Debug */,
717
+ 8368868B194AA5B100923B8B /* Release */,
718
+ );
719
+ defaultConfigurationIsVisible = 0;
720
+ defaultConfigurationName = Release;
721
+ };
722
+ /* End XCConfigurationList section */
723
+ };
724
+ rootObject = 83688641194AA5B100923B8B /* Project object */;
725
+ }