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
+ 835897D119322E33006096D2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 835897D019322E33006096D2 /* Cocoa.framework */; };
11
+ 835897DB19322E33006096D2 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 835897D919322E33006096D2 /* InfoPlist.strings */; };
12
+ 835897DD19322E33006096D2 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 835897DC19322E33006096D2 /* main.cpp */; };
13
+ 835897E119322E33006096D2 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 835897DF19322E33006096D2 /* Credits.rtf */; };
14
+ 835897E919322E34006096D2 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 835897E819322E34006096D2 /* Images.xcassets */; };
15
+ 835897F119322E34006096D2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 835897D019322E33006096D2 /* Cocoa.framework */; };
16
+ 8358980A19322E68006096D2 /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980519322E68006096D2 /* debug.cpp */; };
17
+ 8358980B19322E68006096D2 /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980619322E68006096D2 /* exception.cpp */; };
18
+ 8358980C19322E68006096D2 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980719322E68006096D2 /* string.cpp */; };
19
+ 8358980D19322E68006096D2 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980819322E68006096D2 /* time.cpp */; };
20
+ 8358980E19322E68006096D2 /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980919322E68006096D2 /* util.cpp */; };
21
+ 8389FC631932B85E005585AC /* bounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC4B1932B85E005585AC /* bounds.cpp */; };
22
+ 8389FC641932B85E005585AC /* bitmap.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC4D1932B85E005585AC /* bitmap.mm */; };
23
+ 8389FC651932B85E005585AC /* font.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC4E1932B85E005585AC /* font.mm */; };
24
+ 8389FC661932B85E005585AC /* helper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC501932B85E005585AC /* helper.mm */; };
25
+ 8389FC671932B85E005585AC /* opengl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC511932B85E005585AC /* opengl.mm */; };
26
+ 8389FC681932B85E005585AC /* rays.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC521932B85E005585AC /* rays.mm */; };
27
+ 8389FC691932B85E005585AC /* color_space.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC531932B85E005585AC /* color_space.cpp */; };
28
+ 8389FC6A1932B85E005585AC /* color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC541932B85E005585AC /* color.cpp */; };
29
+ 8389FC6B1932B85E005585AC /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC551932B85E005585AC /* exception.cpp */; };
30
+ 8389FC6C1932B85E005585AC /* frame_buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC561932B85E005585AC /* frame_buffer.cpp */; };
31
+ 8389FC6D1932B85E005585AC /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC581932B85E005585AC /* image.cpp */; };
32
+ 8389FC6E1932B85E005585AC /* matrix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC591932B85E005585AC /* matrix.cpp */; };
33
+ 8389FC6F1932B85E005585AC /* opengl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC5A1932B85E005585AC /* opengl.cpp */; };
34
+ 8389FC701932B85E005585AC /* painter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC5B1932B85E005585AC /* painter.cpp */; };
35
+ 8389FC711932B85E005585AC /* point.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC5C1932B85E005585AC /* point.cpp */; };
36
+ 8389FC721932B85E005585AC /* program.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC5D1932B85E005585AC /* program.cpp */; };
37
+ 8389FC731932B85E005585AC /* render_buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC5F1932B85E005585AC /* render_buffer.cpp */; };
38
+ 8389FC741932B85E005585AC /* shader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC611932B85E005585AC /* shader.cpp */; };
39
+ 8389FC751932B85E005585AC /* texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC621932B85E005585AC /* texture.cpp */; };
40
+ 8389FC771932BC48005585AC /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8389FC761932BC48005585AC /* OpenGL.framework */; };
41
+ 8389FC901932BC6D005585AC /* application.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC7A1932BC6D005585AC /* application.mm */; };
42
+ 8389FC911932BC6D005585AC /* app_delegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC7D1932BC6D005585AC /* app_delegate.mm */; };
43
+ 8389FC921932BC6D005585AC /* native_window.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC7F1932BC6D005585AC /* native_window.mm */; };
44
+ 8389FC931932BC6D005585AC /* event.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC811932BC6D005585AC /* event.mm */; };
45
+ 8389FC941932BC6D005585AC /* opengl_view.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC831932BC6D005585AC /* opengl_view.mm */; };
46
+ 8389FC951932BC6D005585AC /* reflex.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC841932BC6D005585AC /* reflex.mm */; };
47
+ 8389FC961932BC6D005585AC /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC851932BC6D005585AC /* window.mm */; };
48
+ 8389FC971932BC6D005585AC /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC871932BC6D005585AC /* event.cpp */; };
49
+ 8389FC981932BC6D005585AC /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC881932BC6D005585AC /* exception.cpp */; };
50
+ 8389FC991932BC6D005585AC /* image_view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC891932BC6D005585AC /* image_view.cpp */; };
51
+ 8389FC9B1932BC6D005585AC /* selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC8B1932BC6D005585AC /* selector.cpp */; };
52
+ 8389FC9C1932BC6D005585AC /* style_length.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC8C1932BC6D005585AC /* style_length.cpp */; };
53
+ 8389FC9D1932BC6D005585AC /* style.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC8D1932BC6D005585AC /* style.cpp */; };
54
+ 8389FC9E1932BC6D005585AC /* view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC8E1932BC6D005585AC /* view.cpp */; };
55
+ 8389FC9F1932BC6D005585AC /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC8F1932BC6D005585AC /* window.cpp */; };
56
+ /* End PBXBuildFile section */
57
+
58
+ /* Begin PBXContainerItemProxy section */
59
+ 835897F219322E34006096D2 /* PBXContainerItemProxy */ = {
60
+ isa = PBXContainerItemProxy;
61
+ containerPortal = 835897C519322E33006096D2 /* Project object */;
62
+ proxyType = 1;
63
+ remoteGlobalIDString = 835897CC19322E33006096D2;
64
+ remoteInfo = hello;
65
+ };
66
+ /* End PBXContainerItemProxy section */
67
+
68
+ /* Begin PBXFileReference section */
69
+ 835897CD19322E33006096D2 /* hello.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = hello.app; sourceTree = BUILT_PRODUCTS_DIR; };
70
+ 835897D019322E33006096D2 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
71
+ 835897D319322E33006096D2 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
72
+ 835897D419322E33006096D2 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
73
+ 835897D519322E33006096D2 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
74
+ 835897D819322E33006096D2 /* hello-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "hello-Info.plist"; sourceTree = "<group>"; };
75
+ 835897DA19322E33006096D2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
76
+ 835897DC19322E33006096D2 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
77
+ 835897DE19322E33006096D2 /* hello-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "hello-Prefix.pch"; sourceTree = "<group>"; };
78
+ 835897E019322E33006096D2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = "<group>"; };
79
+ 835897E819322E34006096D2 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
80
+ 835897EE19322E34006096D2 /* helloTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = helloTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
81
+ 8358980519322E68006096D2 /* debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cpp; path = ../../../../../xot/src/debug.cpp; sourceTree = "<group>"; };
82
+ 8358980619322E68006096D2 /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../../xot/src/exception.cpp; sourceTree = "<group>"; };
83
+ 8358980719322E68006096D2 /* string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../../../../xot/src/string.cpp; sourceTree = "<group>"; };
84
+ 8358980819322E68006096D2 /* time.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = time.cpp; path = ../../../../../xot/src/time.cpp; sourceTree = "<group>"; };
85
+ 8358980919322E68006096D2 /* util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = util.cpp; path = ../../../../../xot/src/util.cpp; sourceTree = "<group>"; };
86
+ 8389FC4B1932B85E005585AC /* bounds.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bounds.cpp; path = ../../../../../rays/src/bounds.cpp; sourceTree = "<group>"; };
87
+ 8389FC4D1932B85E005585AC /* bitmap.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = bitmap.mm; path = ../../../../../rays/src/osx/bitmap.mm; sourceTree = "<group>"; };
88
+ 8389FC4E1932B85E005585AC /* font.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = font.mm; path = ../../../../../rays/src/osx/font.mm; sourceTree = "<group>"; };
89
+ 8389FC4F1932B85E005585AC /* helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = helper.h; path = ../../../../../rays/src/osx/helper.h; sourceTree = "<group>"; };
90
+ 8389FC501932B85E005585AC /* helper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = helper.mm; path = ../../../../../rays/src/osx/helper.mm; sourceTree = "<group>"; };
91
+ 8389FC511932B85E005585AC /* opengl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = opengl.mm; path = ../../../../../rays/src/osx/opengl.mm; sourceTree = "<group>"; };
92
+ 8389FC521932B85E005585AC /* rays.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = rays.mm; path = ../../../../../rays/src/osx/rays.mm; sourceTree = "<group>"; };
93
+ 8389FC531932B85E005585AC /* color_space.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = color_space.cpp; path = ../../../../../rays/src/color_space.cpp; sourceTree = "<group>"; };
94
+ 8389FC541932B85E005585AC /* color.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = color.cpp; path = ../../../../../rays/src/color.cpp; sourceTree = "<group>"; };
95
+ 8389FC551932B85E005585AC /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../../rays/src/exception.cpp; sourceTree = "<group>"; };
96
+ 8389FC561932B85E005585AC /* frame_buffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = frame_buffer.cpp; path = ../../../../../rays/src/frame_buffer.cpp; sourceTree = "<group>"; };
97
+ 8389FC571932B85E005585AC /* frame_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = frame_buffer.h; path = ../../../../../rays/src/frame_buffer.h; sourceTree = "<group>"; };
98
+ 8389FC581932B85E005585AC /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = image.cpp; path = ../../../../../rays/src/image.cpp; sourceTree = "<group>"; };
99
+ 8389FC591932B85E005585AC /* matrix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cpp; path = ../../../../../rays/src/matrix.cpp; sourceTree = "<group>"; };
100
+ 8389FC5A1932B85E005585AC /* opengl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = opengl.cpp; path = ../../../../../rays/src/opengl.cpp; sourceTree = "<group>"; };
101
+ 8389FC5B1932B85E005585AC /* painter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = painter.cpp; path = ../../../../../rays/src/painter.cpp; sourceTree = "<group>"; };
102
+ 8389FC5C1932B85E005585AC /* point.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = point.cpp; path = ../../../../../rays/src/point.cpp; sourceTree = "<group>"; };
103
+ 8389FC5D1932B85E005585AC /* program.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = program.cpp; path = ../../../../../rays/src/program.cpp; sourceTree = "<group>"; };
104
+ 8389FC5E1932B85E005585AC /* program.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = program.h; path = ../../../../../rays/src/program.h; sourceTree = "<group>"; };
105
+ 8389FC5F1932B85E005585AC /* render_buffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = render_buffer.cpp; path = ../../../../../rays/src/render_buffer.cpp; sourceTree = "<group>"; };
106
+ 8389FC601932B85E005585AC /* render_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = render_buffer.h; path = ../../../../../rays/src/render_buffer.h; sourceTree = "<group>"; };
107
+ 8389FC611932B85E005585AC /* shader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = shader.cpp; path = ../../../../../rays/src/shader.cpp; sourceTree = "<group>"; };
108
+ 8389FC621932B85E005585AC /* texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = texture.cpp; path = ../../../../../rays/src/texture.cpp; sourceTree = "<group>"; };
109
+ 8389FC761932BC48005585AC /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
110
+ 8389FC7A1932BC6D005585AC /* application.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = application.mm; path = ../../../../src/osx/application.mm; sourceTree = "<group>"; };
111
+ 8389FC7B1932BC6D005585AC /* application_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = application_data.h; path = ../../../../src/osx/application_data.h; sourceTree = "<group>"; };
112
+ 8389FC7C1932BC6D005585AC /* app_delegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = app_delegate.h; path = ../../../../src/osx/app_delegate.h; sourceTree = "<group>"; };
113
+ 8389FC7D1932BC6D005585AC /* app_delegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = app_delegate.mm; path = ../../../../src/osx/app_delegate.mm; sourceTree = "<group>"; };
114
+ 8389FC7E1932BC6D005585AC /* native_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = native_window.h; path = ../../../../src/osx/native_window.h; sourceTree = "<group>"; };
115
+ 8389FC7F1932BC6D005585AC /* native_window.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = native_window.mm; path = ../../../../src/osx/native_window.mm; sourceTree = "<group>"; };
116
+ 8389FC801932BC6D005585AC /* event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = event.h; path = ../../../../src/osx/event.h; sourceTree = "<group>"; };
117
+ 8389FC811932BC6D005585AC /* event.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = event.mm; path = ../../../../src/osx/event.mm; sourceTree = "<group>"; };
118
+ 8389FC821932BC6D005585AC /* opengl_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = opengl_view.h; path = ../../../../src/osx/opengl_view.h; sourceTree = "<group>"; };
119
+ 8389FC831932BC6D005585AC /* opengl_view.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = opengl_view.mm; path = ../../../../src/osx/opengl_view.mm; sourceTree = "<group>"; };
120
+ 8389FC841932BC6D005585AC /* reflex.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = reflex.mm; path = ../../../../src/osx/reflex.mm; sourceTree = "<group>"; };
121
+ 8389FC851932BC6D005585AC /* window.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = window.mm; path = ../../../../src/osx/window.mm; sourceTree = "<group>"; };
122
+ 8389FC861932BC6D005585AC /* window_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = window_data.h; path = ../../../../src/osx/window_data.h; sourceTree = "<group>"; };
123
+ 8389FC871932BC6D005585AC /* event.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = event.cpp; path = ../../../../src/event.cpp; sourceTree = "<group>"; };
124
+ 8389FC881932BC6D005585AC /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../src/exception.cpp; sourceTree = "<group>"; };
125
+ 8389FC891932BC6D005585AC /* image_view.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = image_view.cpp; path = ../../../../src/image_view.cpp; sourceTree = "<group>"; };
126
+ 8389FC8B1932BC6D005585AC /* selector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = selector.cpp; path = ../../../../src/selector.cpp; sourceTree = "<group>"; };
127
+ 8389FC8C1932BC6D005585AC /* style_length.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = style_length.cpp; path = ../../../../src/style_length.cpp; sourceTree = "<group>"; };
128
+ 8389FC8D1932BC6D005585AC /* style.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = style.cpp; path = ../../../../src/style.cpp; sourceTree = "<group>"; };
129
+ 8389FC8E1932BC6D005585AC /* view.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = view.cpp; path = ../../../../src/view.cpp; sourceTree = "<group>"; };
130
+ 8389FC8F1932BC6D005585AC /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = window.cpp; path = ../../../../src/window.cpp; sourceTree = "<group>"; };
131
+ 8389FCA11932BE5A005585AC /* application.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = application.h; path = ../../../../include/reflex/application.h; sourceTree = "<group>"; };
132
+ 8389FCA21932BE5A005585AC /* defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = defs.h; path = ../../../../include/reflex/defs.h; sourceTree = "<group>"; };
133
+ 8389FCA31932BE5A005585AC /* event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = event.h; path = ../../../../include/reflex/event.h; sourceTree = "<group>"; };
134
+ 8389FCA41932BE5A005585AC /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = exception.h; path = ../../../../include/reflex/exception.h; sourceTree = "<group>"; };
135
+ 8389FCA51932BE5A005585AC /* image_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = image_view.h; path = ../../../../include/reflex/image_view.h; sourceTree = "<group>"; };
136
+ 8389FCA61932BE5A005585AC /* reflex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reflex.h; path = ../../../../include/reflex/reflex.h; sourceTree = "<group>"; };
137
+ 8389FCB11932BE5A005585AC /* ruby.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ruby.h; path = ../../../../include/reflex/ruby.h; sourceTree = "<group>"; };
138
+ 8389FCB21932BE5A005585AC /* selector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = selector.h; path = ../../../../include/reflex/selector.h; sourceTree = "<group>"; };
139
+ 8389FCB31932BE5A005585AC /* style.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = style.h; path = ../../../../include/reflex/style.h; sourceTree = "<group>"; };
140
+ 8389FCB41932BE5A005585AC /* style_length.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = style_length.h; path = ../../../../include/reflex/style_length.h; sourceTree = "<group>"; };
141
+ 8389FCB51932BE5A005585AC /* view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = view.h; path = ../../../../include/reflex/view.h; sourceTree = "<group>"; };
142
+ 8389FCB61932BE5A005585AC /* window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = window.h; path = ../../../../include/reflex/window.h; sourceTree = "<group>"; };
143
+ 8389FCB71932BE5A005585AC /* reflex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reflex.h; path = ../../../../include/reflex.h; sourceTree = "<group>"; };
144
+ 8389FCB91932BEA5005585AC /* bitmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bitmap.h; path = ../../../../../rays/include/rays/bitmap.h; sourceTree = "<group>"; };
145
+ 8389FCBA1932BEA5005585AC /* bounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bounds.h; path = ../../../../../rays/include/rays/bounds.h; sourceTree = "<group>"; };
146
+ 8389FCBB1932BEA5005585AC /* color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = color.h; path = ../../../../../rays/include/rays/color.h; sourceTree = "<group>"; };
147
+ 8389FCBC1932BEA5005585AC /* color_space.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = color_space.h; path = ../../../../../rays/include/rays/color_space.h; sourceTree = "<group>"; };
148
+ 8389FCBD1932BEA5005585AC /* defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = defs.h; path = ../../../../../rays/include/rays/defs.h; sourceTree = "<group>"; };
149
+ 8389FCBE1932BEA5005585AC /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = exception.h; path = ../../../../../rays/include/rays/exception.h; sourceTree = "<group>"; };
150
+ 8389FCBF1932BEA5005585AC /* font.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = font.h; path = ../../../../../rays/include/rays/font.h; sourceTree = "<group>"; };
151
+ 8389FCC01932BEA5005585AC /* image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = image.h; path = ../../../../../rays/include/rays/image.h; sourceTree = "<group>"; };
152
+ 8389FCC11932BEA5005585AC /* matrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = matrix.h; path = ../../../../../rays/include/rays/matrix.h; sourceTree = "<group>"; };
153
+ 8389FCC21932BEA5005585AC /* opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = opengl.h; path = ../../../../../rays/include/rays/opengl.h; sourceTree = "<group>"; };
154
+ 8389FCC31932BEA5005585AC /* painter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = painter.h; path = ../../../../../rays/include/rays/painter.h; sourceTree = "<group>"; };
155
+ 8389FCC41932BEA5005585AC /* point.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = point.h; path = ../../../../../rays/include/rays/point.h; sourceTree = "<group>"; };
156
+ 8389FCC51932BEA5005585AC /* rays.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rays.h; path = ../../../../../rays/include/rays/rays.h; sourceTree = "<group>"; };
157
+ 8389FCD31932BEA5005585AC /* ruby.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ruby.h; path = ../../../../../rays/include/rays/ruby.h; sourceTree = "<group>"; };
158
+ 8389FCD41932BEA5005585AC /* shader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = shader.h; path = ../../../../../rays/include/rays/shader.h; sourceTree = "<group>"; };
159
+ 8389FCD51932BEA5005585AC /* texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = texture.h; path = ../../../../../rays/include/rays/texture.h; sourceTree = "<group>"; };
160
+ 8389FCD61932BEA5005585AC /* rays.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rays.h; path = ../../../../../rays/include/rays.h; sourceTree = "<group>"; };
161
+ 8389FCD81932BED3005585AC /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = debug.h; path = ../../../../../xot/include/xot/debug.h; sourceTree = "<group>"; };
162
+ 8389FCD91932BED3005585AC /* defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = defs.h; path = ../../../../../xot/include/xot/defs.h; sourceTree = "<group>"; };
163
+ 8389FCDA1932BED3005585AC /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = exception.h; path = ../../../../../xot/include/xot/exception.h; sourceTree = "<group>"; };
164
+ 8389FCDB1932BED3005585AC /* pimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pimpl.h; path = ../../../../../xot/include/xot/pimpl.h; sourceTree = "<group>"; };
165
+ 8389FCDC1932BED3005585AC /* ref.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ref.h; path = ../../../../../xot/include/xot/ref.h; sourceTree = "<group>"; };
166
+ 8389FCDD1932BED3005585AC /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = string.h; path = ../../../../../xot/include/xot/string.h; sourceTree = "<group>"; };
167
+ 8389FCDE1932BED3005585AC /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = time.h; path = ../../../../../xot/include/xot/time.h; sourceTree = "<group>"; };
168
+ 8389FCDF1932BED3005585AC /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = util.h; path = ../../../../../xot/include/xot/util.h; sourceTree = "<group>"; };
169
+ 8389FCE01932BED3005585AC /* xot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xot.h; path = ../../../../../xot/include/xot.h; sourceTree = "<group>"; };
170
+ /* End PBXFileReference section */
171
+
172
+ /* Begin PBXFrameworksBuildPhase section */
173
+ 835897CA19322E33006096D2 /* Frameworks */ = {
174
+ isa = PBXFrameworksBuildPhase;
175
+ buildActionMask = 2147483647;
176
+ files = (
177
+ 8389FC771932BC48005585AC /* OpenGL.framework in Frameworks */,
178
+ 835897D119322E33006096D2 /* Cocoa.framework in Frameworks */,
179
+ );
180
+ runOnlyForDeploymentPostprocessing = 0;
181
+ };
182
+ 835897EB19322E34006096D2 /* Frameworks */ = {
183
+ isa = PBXFrameworksBuildPhase;
184
+ buildActionMask = 2147483647;
185
+ files = (
186
+ 835897F119322E34006096D2 /* Cocoa.framework in Frameworks */,
187
+ );
188
+ runOnlyForDeploymentPostprocessing = 0;
189
+ };
190
+ /* End PBXFrameworksBuildPhase section */
191
+
192
+ /* Begin PBXGroup section */
193
+ 835897C419322E33006096D2 = {
194
+ isa = PBXGroup;
195
+ children = (
196
+ 835897D619322E33006096D2 /* hello */,
197
+ 835897CF19322E33006096D2 /* Frameworks */,
198
+ 835897CE19322E33006096D2 /* Products */,
199
+ );
200
+ sourceTree = "<group>";
201
+ };
202
+ 835897CE19322E33006096D2 /* Products */ = {
203
+ isa = PBXGroup;
204
+ children = (
205
+ 835897CD19322E33006096D2 /* hello.app */,
206
+ 835897EE19322E34006096D2 /* helloTests.xctest */,
207
+ );
208
+ name = Products;
209
+ sourceTree = "<group>";
210
+ };
211
+ 835897CF19322E33006096D2 /* Frameworks */ = {
212
+ isa = PBXGroup;
213
+ children = (
214
+ 8389FC761932BC48005585AC /* OpenGL.framework */,
215
+ 835897D019322E33006096D2 /* Cocoa.framework */,
216
+ 835897D219322E33006096D2 /* Other Frameworks */,
217
+ );
218
+ name = Frameworks;
219
+ sourceTree = "<group>";
220
+ };
221
+ 835897D219322E33006096D2 /* Other Frameworks */ = {
222
+ isa = PBXGroup;
223
+ children = (
224
+ 835897D319322E33006096D2 /* AppKit.framework */,
225
+ 835897D419322E33006096D2 /* CoreData.framework */,
226
+ 835897D519322E33006096D2 /* Foundation.framework */,
227
+ );
228
+ name = "Other Frameworks";
229
+ sourceTree = "<group>";
230
+ };
231
+ 835897D619322E33006096D2 /* hello */ = {
232
+ isa = PBXGroup;
233
+ children = (
234
+ 8358980419322E52006096D2 /* xot */,
235
+ 8389FC4A1932B839005585AC /* rays */,
236
+ 8389FC781932BC57005585AC /* reflex */,
237
+ 835897D719322E33006096D2 /* etc */,
238
+ 835897DC19322E33006096D2 /* main.cpp */,
239
+ );
240
+ path = hello;
241
+ sourceTree = "<group>";
242
+ };
243
+ 835897D719322E33006096D2 /* etc */ = {
244
+ isa = PBXGroup;
245
+ children = (
246
+ 835897DF19322E33006096D2 /* Credits.rtf */,
247
+ 835897D819322E33006096D2 /* hello-Info.plist */,
248
+ 835897DE19322E33006096D2 /* hello-Prefix.pch */,
249
+ 835897E819322E34006096D2 /* Images.xcassets */,
250
+ 835897D919322E33006096D2 /* InfoPlist.strings */,
251
+ );
252
+ name = etc;
253
+ sourceTree = "<group>";
254
+ };
255
+ 8358980419322E52006096D2 /* xot */ = {
256
+ isa = PBXGroup;
257
+ children = (
258
+ 8358980519322E68006096D2 /* debug.cpp */,
259
+ 8389FCD81932BED3005585AC /* debug.h */,
260
+ 8389FCD91932BED3005585AC /* defs.h */,
261
+ 8358980619322E68006096D2 /* exception.cpp */,
262
+ 8389FCDA1932BED3005585AC /* exception.h */,
263
+ 8389FCDB1932BED3005585AC /* pimpl.h */,
264
+ 8389FCDC1932BED3005585AC /* ref.h */,
265
+ 8358980719322E68006096D2 /* string.cpp */,
266
+ 8389FCDD1932BED3005585AC /* string.h */,
267
+ 8358980819322E68006096D2 /* time.cpp */,
268
+ 8389FCDE1932BED3005585AC /* time.h */,
269
+ 8358980919322E68006096D2 /* util.cpp */,
270
+ 8389FCDF1932BED3005585AC /* util.h */,
271
+ 8389FCE01932BED3005585AC /* xot.h */,
272
+ );
273
+ name = xot;
274
+ sourceTree = "<group>";
275
+ };
276
+ 8389FC4A1932B839005585AC /* rays */ = {
277
+ isa = PBXGroup;
278
+ children = (
279
+ 8389FCB91932BEA5005585AC /* bitmap.h */,
280
+ 8389FC4D1932B85E005585AC /* bitmap.mm */,
281
+ 8389FC4B1932B85E005585AC /* bounds.cpp */,
282
+ 8389FCBA1932BEA5005585AC /* bounds.h */,
283
+ 8389FC541932B85E005585AC /* color.cpp */,
284
+ 8389FCBB1932BEA5005585AC /* color.h */,
285
+ 8389FC531932B85E005585AC /* color_space.cpp */,
286
+ 8389FCBC1932BEA5005585AC /* color_space.h */,
287
+ 8389FCBD1932BEA5005585AC /* defs.h */,
288
+ 8389FC551932B85E005585AC /* exception.cpp */,
289
+ 8389FCBE1932BEA5005585AC /* exception.h */,
290
+ 8389FCBF1932BEA5005585AC /* font.h */,
291
+ 8389FC4E1932B85E005585AC /* font.mm */,
292
+ 8389FC561932B85E005585AC /* frame_buffer.cpp */,
293
+ 8389FC571932B85E005585AC /* frame_buffer.h */,
294
+ 8389FC4F1932B85E005585AC /* helper.h */,
295
+ 8389FC501932B85E005585AC /* helper.mm */,
296
+ 8389FC581932B85E005585AC /* image.cpp */,
297
+ 8389FCC01932BEA5005585AC /* image.h */,
298
+ 8389FC591932B85E005585AC /* matrix.cpp */,
299
+ 8389FCC11932BEA5005585AC /* matrix.h */,
300
+ 8389FC5A1932B85E005585AC /* opengl.cpp */,
301
+ 8389FCC21932BEA5005585AC /* opengl.h */,
302
+ 8389FC511932B85E005585AC /* opengl.mm */,
303
+ 8389FC5B1932B85E005585AC /* painter.cpp */,
304
+ 8389FCC31932BEA5005585AC /* painter.h */,
305
+ 8389FC5C1932B85E005585AC /* point.cpp */,
306
+ 8389FCC41932BEA5005585AC /* point.h */,
307
+ 8389FC5D1932B85E005585AC /* program.cpp */,
308
+ 8389FC5E1932B85E005585AC /* program.h */,
309
+ 8389FCD61932BEA5005585AC /* rays.h */,
310
+ 8389FCC51932BEA5005585AC /* rays.h */,
311
+ 8389FC521932B85E005585AC /* rays.mm */,
312
+ 8389FC5F1932B85E005585AC /* render_buffer.cpp */,
313
+ 8389FC601932B85E005585AC /* render_buffer.h */,
314
+ 8389FCD31932BEA5005585AC /* ruby.h */,
315
+ 8389FC611932B85E005585AC /* shader.cpp */,
316
+ 8389FCD41932BEA5005585AC /* shader.h */,
317
+ 8389FC621932B85E005585AC /* texture.cpp */,
318
+ 8389FCD51932BEA5005585AC /* texture.h */,
319
+ );
320
+ name = rays;
321
+ sourceTree = "<group>";
322
+ };
323
+ 8389FC781932BC57005585AC /* reflex */ = {
324
+ isa = PBXGroup;
325
+ children = (
326
+ 8389FCA11932BE5A005585AC /* application.h */,
327
+ 8389FC7A1932BC6D005585AC /* application.mm */,
328
+ 8389FC7B1932BC6D005585AC /* application_data.h */,
329
+ 8389FC7C1932BC6D005585AC /* app_delegate.h */,
330
+ 8389FC7D1932BC6D005585AC /* app_delegate.mm */,
331
+ 8389FC7E1932BC6D005585AC /* native_window.h */,
332
+ 8389FC7F1932BC6D005585AC /* native_window.mm */,
333
+ 8389FCA21932BE5A005585AC /* defs.h */,
334
+ 8389FC871932BC6D005585AC /* event.cpp */,
335
+ 8389FC801932BC6D005585AC /* event.h */,
336
+ 8389FCA31932BE5A005585AC /* event.h */,
337
+ 8389FC811932BC6D005585AC /* event.mm */,
338
+ 8389FC881932BC6D005585AC /* exception.cpp */,
339
+ 8389FCA41932BE5A005585AC /* exception.h */,
340
+ 8389FC891932BC6D005585AC /* image_view.cpp */,
341
+ 8389FCA51932BE5A005585AC /* image_view.h */,
342
+ 8389FC821932BC6D005585AC /* opengl_view.h */,
343
+ 8389FC831932BC6D005585AC /* opengl_view.mm */,
344
+ 8389FCB71932BE5A005585AC /* reflex.h */,
345
+ 8389FCA61932BE5A005585AC /* reflex.h */,
346
+ 8389FC841932BC6D005585AC /* reflex.mm */,
347
+ 8389FCB11932BE5A005585AC /* ruby.h */,
348
+ 8389FC8B1932BC6D005585AC /* selector.cpp */,
349
+ 8389FCB21932BE5A005585AC /* selector.h */,
350
+ 8389FC8D1932BC6D005585AC /* style.cpp */,
351
+ 8389FCB31932BE5A005585AC /* style.h */,
352
+ 8389FC8C1932BC6D005585AC /* style_length.cpp */,
353
+ 8389FCB41932BE5A005585AC /* style_length.h */,
354
+ 8389FC8E1932BC6D005585AC /* view.cpp */,
355
+ 8389FCB51932BE5A005585AC /* view.h */,
356
+ 8389FC8F1932BC6D005585AC /* window.cpp */,
357
+ 8389FCB61932BE5A005585AC /* window.h */,
358
+ 8389FC851932BC6D005585AC /* window.mm */,
359
+ 8389FC861932BC6D005585AC /* window_data.h */,
360
+ );
361
+ name = reflex;
362
+ sourceTree = "<group>";
363
+ };
364
+ /* End PBXGroup section */
365
+
366
+ /* Begin PBXNativeTarget section */
367
+ 835897CC19322E33006096D2 /* hello */ = {
368
+ isa = PBXNativeTarget;
369
+ buildConfigurationList = 835897FE19322E34006096D2 /* Build configuration list for PBXNativeTarget "hello" */;
370
+ buildPhases = (
371
+ 835897C919322E33006096D2 /* Sources */,
372
+ 835897CA19322E33006096D2 /* Frameworks */,
373
+ 835897CB19322E33006096D2 /* Resources */,
374
+ );
375
+ buildRules = (
376
+ );
377
+ dependencies = (
378
+ );
379
+ name = hello;
380
+ productName = hello;
381
+ productReference = 835897CD19322E33006096D2 /* hello.app */;
382
+ productType = "com.apple.product-type.application";
383
+ };
384
+ 835897ED19322E34006096D2 /* helloTests */ = {
385
+ isa = PBXNativeTarget;
386
+ buildConfigurationList = 8358980119322E34006096D2 /* Build configuration list for PBXNativeTarget "helloTests" */;
387
+ buildPhases = (
388
+ 835897EA19322E34006096D2 /* Sources */,
389
+ 835897EB19322E34006096D2 /* Frameworks */,
390
+ 835897EC19322E34006096D2 /* Resources */,
391
+ );
392
+ buildRules = (
393
+ );
394
+ dependencies = (
395
+ 835897F319322E34006096D2 /* PBXTargetDependency */,
396
+ );
397
+ name = helloTests;
398
+ productName = helloTests;
399
+ productReference = 835897EE19322E34006096D2 /* helloTests.xctest */;
400
+ productType = "com.apple.product-type.bundle.unit-test";
401
+ };
402
+ /* End PBXNativeTarget section */
403
+
404
+ /* Begin PBXProject section */
405
+ 835897C519322E33006096D2 /* Project object */ = {
406
+ isa = PBXProject;
407
+ attributes = {
408
+ LastUpgradeCheck = 0500;
409
+ ORGANIZATIONNAME = xord.org;
410
+ TargetAttributes = {
411
+ 835897ED19322E34006096D2 = {
412
+ TestTargetID = 835897CC19322E33006096D2;
413
+ };
414
+ };
415
+ };
416
+ buildConfigurationList = 835897C819322E33006096D2 /* Build configuration list for PBXProject "hello" */;
417
+ compatibilityVersion = "Xcode 3.2";
418
+ developmentRegion = English;
419
+ hasScannedForEncodings = 0;
420
+ knownRegions = (
421
+ en,
422
+ Base,
423
+ );
424
+ mainGroup = 835897C419322E33006096D2;
425
+ productRefGroup = 835897CE19322E33006096D2 /* Products */;
426
+ projectDirPath = "";
427
+ projectRoot = "";
428
+ targets = (
429
+ 835897CC19322E33006096D2 /* hello */,
430
+ 835897ED19322E34006096D2 /* helloTests */,
431
+ );
432
+ };
433
+ /* End PBXProject section */
434
+
435
+ /* Begin PBXResourcesBuildPhase section */
436
+ 835897CB19322E33006096D2 /* Resources */ = {
437
+ isa = PBXResourcesBuildPhase;
438
+ buildActionMask = 2147483647;
439
+ files = (
440
+ 835897DB19322E33006096D2 /* InfoPlist.strings in Resources */,
441
+ 835897E919322E34006096D2 /* Images.xcassets in Resources */,
442
+ 835897E119322E33006096D2 /* Credits.rtf in Resources */,
443
+ );
444
+ runOnlyForDeploymentPostprocessing = 0;
445
+ };
446
+ 835897EC19322E34006096D2 /* Resources */ = {
447
+ isa = PBXResourcesBuildPhase;
448
+ buildActionMask = 2147483647;
449
+ files = (
450
+ );
451
+ runOnlyForDeploymentPostprocessing = 0;
452
+ };
453
+ /* End PBXResourcesBuildPhase section */
454
+
455
+ /* Begin PBXSourcesBuildPhase section */
456
+ 835897C919322E33006096D2 /* Sources */ = {
457
+ isa = PBXSourcesBuildPhase;
458
+ buildActionMask = 2147483647;
459
+ files = (
460
+ 8389FC6F1932B85E005585AC /* opengl.cpp in Sources */,
461
+ 8389FC6A1932B85E005585AC /* color.cpp in Sources */,
462
+ 8389FC9F1932BC6D005585AC /* window.cpp in Sources */,
463
+ 8389FC921932BC6D005585AC /* native_window.mm in Sources */,
464
+ 8389FC711932B85E005585AC /* point.cpp in Sources */,
465
+ 8389FC751932B85E005585AC /* texture.cpp in Sources */,
466
+ 8389FC731932B85E005585AC /* render_buffer.cpp in Sources */,
467
+ 8389FC681932B85E005585AC /* rays.mm in Sources */,
468
+ 8389FC741932B85E005585AC /* shader.cpp in Sources */,
469
+ 8389FC971932BC6D005585AC /* event.cpp in Sources */,
470
+ 8389FC901932BC6D005585AC /* application.mm in Sources */,
471
+ 8389FC6C1932B85E005585AC /* frame_buffer.cpp in Sources */,
472
+ 8358980B19322E68006096D2 /* exception.cpp in Sources */,
473
+ 8389FC721932B85E005585AC /* program.cpp in Sources */,
474
+ 8389FC911932BC6D005585AC /* app_delegate.mm in Sources */,
475
+ 8389FC9B1932BC6D005585AC /* selector.cpp in Sources */,
476
+ 8389FC641932B85E005585AC /* bitmap.mm in Sources */,
477
+ 8389FC661932B85E005585AC /* helper.mm in Sources */,
478
+ 8358980E19322E68006096D2 /* util.cpp in Sources */,
479
+ 8389FC691932B85E005585AC /* color_space.cpp in Sources */,
480
+ 8358980D19322E68006096D2 /* time.cpp in Sources */,
481
+ 8389FC961932BC6D005585AC /* window.mm in Sources */,
482
+ 8358980A19322E68006096D2 /* debug.cpp in Sources */,
483
+ 8389FC651932B85E005585AC /* font.mm in Sources */,
484
+ 8389FC6E1932B85E005585AC /* matrix.cpp in Sources */,
485
+ 8389FC981932BC6D005585AC /* exception.cpp in Sources */,
486
+ 8389FC701932B85E005585AC /* painter.cpp in Sources */,
487
+ 8389FC951932BC6D005585AC /* reflex.mm in Sources */,
488
+ 8358980C19322E68006096D2 /* string.cpp in Sources */,
489
+ 8389FC631932B85E005585AC /* bounds.cpp in Sources */,
490
+ 8389FC6B1932B85E005585AC /* exception.cpp in Sources */,
491
+ 8389FC931932BC6D005585AC /* event.mm in Sources */,
492
+ 8389FC9C1932BC6D005585AC /* style_length.cpp in Sources */,
493
+ 8389FC671932B85E005585AC /* opengl.mm in Sources */,
494
+ 8389FC9D1932BC6D005585AC /* style.cpp in Sources */,
495
+ 8389FC991932BC6D005585AC /* image_view.cpp in Sources */,
496
+ 8389FC9E1932BC6D005585AC /* view.cpp in Sources */,
497
+ 8389FC941932BC6D005585AC /* opengl_view.mm in Sources */,
498
+ 835897DD19322E33006096D2 /* main.cpp in Sources */,
499
+ 8389FC6D1932B85E005585AC /* image.cpp in Sources */,
500
+ );
501
+ runOnlyForDeploymentPostprocessing = 0;
502
+ };
503
+ 835897EA19322E34006096D2 /* Sources */ = {
504
+ isa = PBXSourcesBuildPhase;
505
+ buildActionMask = 2147483647;
506
+ files = (
507
+ );
508
+ runOnlyForDeploymentPostprocessing = 0;
509
+ };
510
+ /* End PBXSourcesBuildPhase section */
511
+
512
+ /* Begin PBXTargetDependency section */
513
+ 835897F319322E34006096D2 /* PBXTargetDependency */ = {
514
+ isa = PBXTargetDependency;
515
+ target = 835897CC19322E33006096D2 /* hello */;
516
+ targetProxy = 835897F219322E34006096D2 /* PBXContainerItemProxy */;
517
+ };
518
+ /* End PBXTargetDependency section */
519
+
520
+ /* Begin PBXVariantGroup section */
521
+ 835897D919322E33006096D2 /* InfoPlist.strings */ = {
522
+ isa = PBXVariantGroup;
523
+ children = (
524
+ 835897DA19322E33006096D2 /* en */,
525
+ );
526
+ name = InfoPlist.strings;
527
+ sourceTree = "<group>";
528
+ };
529
+ 835897DF19322E33006096D2 /* Credits.rtf */ = {
530
+ isa = PBXVariantGroup;
531
+ children = (
532
+ 835897E019322E33006096D2 /* en */,
533
+ );
534
+ name = Credits.rtf;
535
+ sourceTree = "<group>";
536
+ };
537
+ /* End PBXVariantGroup section */
538
+
539
+ /* Begin XCBuildConfiguration section */
540
+ 835897FC19322E34006096D2 /* Debug */ = {
541
+ isa = XCBuildConfiguration;
542
+ buildSettings = {
543
+ ALWAYS_SEARCH_USER_PATHS = NO;
544
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
545
+ CLANG_CXX_LIBRARY = "libc++";
546
+ CLANG_ENABLE_OBJC_ARC = NO;
547
+ CLANG_WARN_BOOL_CONVERSION = YES;
548
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
549
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
550
+ CLANG_WARN_EMPTY_BODY = YES;
551
+ CLANG_WARN_ENUM_CONVERSION = YES;
552
+ CLANG_WARN_INT_CONVERSION = YES;
553
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
554
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
555
+ COPY_PHASE_STRIP = NO;
556
+ GCC_C_LANGUAGE_STANDARD = gnu99;
557
+ GCC_DYNAMIC_NO_PIC = NO;
558
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
559
+ GCC_OPTIMIZATION_LEVEL = 0;
560
+ GCC_PREPROCESSOR_DEFINITIONS = (
561
+ "OSX=1",
562
+ "DEBUG=1",
563
+ "$(inherited)",
564
+ );
565
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
566
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
567
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
568
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
569
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
570
+ GCC_WARN_UNUSED_FUNCTION = YES;
571
+ GCC_WARN_UNUSED_VARIABLE = YES;
572
+ HEADER_SEARCH_PATHS = (
573
+ ../../../../reflex/include,
574
+ ../../../../rays/include,
575
+ ../../../../xot/include,
576
+ /usr/local/include,
577
+ "$(inherited)",
578
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
579
+ );
580
+ MACOSX_DEPLOYMENT_TARGET = 10.9;
581
+ ONLY_ACTIVE_ARCH = YES;
582
+ SDKROOT = macosx;
583
+ };
584
+ name = Debug;
585
+ };
586
+ 835897FD19322E34006096D2 /* Release */ = {
587
+ isa = XCBuildConfiguration;
588
+ buildSettings = {
589
+ ALWAYS_SEARCH_USER_PATHS = NO;
590
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
591
+ CLANG_CXX_LIBRARY = "libc++";
592
+ CLANG_ENABLE_OBJC_ARC = NO;
593
+ CLANG_WARN_BOOL_CONVERSION = YES;
594
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
595
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
596
+ CLANG_WARN_EMPTY_BODY = YES;
597
+ CLANG_WARN_ENUM_CONVERSION = YES;
598
+ CLANG_WARN_INT_CONVERSION = YES;
599
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
600
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
601
+ COPY_PHASE_STRIP = YES;
602
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
603
+ ENABLE_NS_ASSERTIONS = NO;
604
+ GCC_C_LANGUAGE_STANDARD = gnu99;
605
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
606
+ GCC_PREPROCESSOR_DEFINITIONS = "OSX=1";
607
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
608
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
609
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
610
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
611
+ GCC_WARN_UNUSED_FUNCTION = YES;
612
+ GCC_WARN_UNUSED_VARIABLE = YES;
613
+ HEADER_SEARCH_PATHS = (
614
+ ../../../../reflex/include,
615
+ ../../../../rays/include,
616
+ ../../../../xot/include,
617
+ /usr/local/include,
618
+ "$(inherited)",
619
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
620
+ );
621
+ MACOSX_DEPLOYMENT_TARGET = 10.9;
622
+ SDKROOT = macosx;
623
+ };
624
+ name = Release;
625
+ };
626
+ 835897FF19322E34006096D2 /* Debug */ = {
627
+ isa = XCBuildConfiguration;
628
+ buildSettings = {
629
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
630
+ COMBINE_HIDPI_IMAGES = YES;
631
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
632
+ GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
633
+ INFOPLIST_FILE = "hello/hello-Info.plist";
634
+ PRODUCT_NAME = "$(TARGET_NAME)";
635
+ WRAPPER_EXTENSION = app;
636
+ };
637
+ name = Debug;
638
+ };
639
+ 8358980019322E34006096D2 /* Release */ = {
640
+ isa = XCBuildConfiguration;
641
+ buildSettings = {
642
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
643
+ COMBINE_HIDPI_IMAGES = YES;
644
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
645
+ GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
646
+ INFOPLIST_FILE = "hello/hello-Info.plist";
647
+ PRODUCT_NAME = "$(TARGET_NAME)";
648
+ WRAPPER_EXTENSION = app;
649
+ };
650
+ name = Release;
651
+ };
652
+ 8358980219322E34006096D2 /* Debug */ = {
653
+ isa = XCBuildConfiguration;
654
+ buildSettings = {
655
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/Contents/MacOS/hello";
656
+ COMBINE_HIDPI_IMAGES = YES;
657
+ FRAMEWORK_SEARCH_PATHS = (
658
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
659
+ "$(inherited)",
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
+ 8358980319322E34006096D2 /* Release */ = {
675
+ isa = XCBuildConfiguration;
676
+ buildSettings = {
677
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/Contents/MacOS/hello";
678
+ COMBINE_HIDPI_IMAGES = YES;
679
+ FRAMEWORK_SEARCH_PATHS = (
680
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
681
+ "$(inherited)",
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
+ 835897C819322E33006096D2 /* Build configuration list for PBXProject "hello" */ = {
696
+ isa = XCConfigurationList;
697
+ buildConfigurations = (
698
+ 835897FC19322E34006096D2 /* Debug */,
699
+ 835897FD19322E34006096D2 /* Release */,
700
+ );
701
+ defaultConfigurationIsVisible = 0;
702
+ defaultConfigurationName = Release;
703
+ };
704
+ 835897FE19322E34006096D2 /* Build configuration list for PBXNativeTarget "hello" */ = {
705
+ isa = XCConfigurationList;
706
+ buildConfigurations = (
707
+ 835897FF19322E34006096D2 /* Debug */,
708
+ 8358980019322E34006096D2 /* Release */,
709
+ );
710
+ defaultConfigurationIsVisible = 0;
711
+ defaultConfigurationName = Release;
712
+ };
713
+ 8358980119322E34006096D2 /* Build configuration list for PBXNativeTarget "helloTests" */ = {
714
+ isa = XCConfigurationList;
715
+ buildConfigurations = (
716
+ 8358980219322E34006096D2 /* Debug */,
717
+ 8358980319322E34006096D2 /* Release */,
718
+ );
719
+ defaultConfigurationIsVisible = 0;
720
+ defaultConfigurationName = Release;
721
+ };
722
+ /* End XCConfigurationList section */
723
+ };
724
+ rootObject = 835897C519322E33006096D2 /* Project object */;
725
+ }