project.pbxproj 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 9206FDC61F140707005078A2 /* Texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9206FDC41F140707005078A2 /* Texture.cpp */; };
  10. 9206FDC91F140D40005078A2 /* Shader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9206FDC71F140D40005078A2 /* Shader.cpp */; };
  11. 9216C5431FCFFDA400F72B29 /* Asteroid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9216C5371FCFFDA200F72B29 /* Asteroid.cpp */; };
  12. 9216C5441FCFFDA400F72B29 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9216C53A1FCFFDA300F72B29 /* Random.cpp */; };
  13. 9216C5451FCFFDA400F72B29 /* Laser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9216C53D1FCFFDA300F72B29 /* Laser.cpp */; };
  14. 9216C5461FCFFDA400F72B29 /* InputSystem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9216C5401FCFFDA300F72B29 /* InputSystem.cpp */; };
  15. 9216C5471FCFFDA400F72B29 /* Ship.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9216C5411FCFFDA400F72B29 /* Ship.cpp */; };
  16. 9216C5481FCFFDA400F72B29 /* InputComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9216C5421FCFFDA400F72B29 /* InputComponent.cpp */; };
  17. 9223C4781F009428009A94D7 /* Game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C4671F009428009A94D7 /* Game.cpp */; };
  18. 9223C4791F009428009A94D7 /* Actor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C4681F009428009A94D7 /* Actor.cpp */; };
  19. 9223C47C1F009428009A94D7 /* Component.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C46E1F009428009A94D7 /* Component.cpp */; };
  20. 9223C47D1F009428009A94D7 /* Main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C4711F009428009A94D7 /* Main.cpp */; };
  21. 9223C47E1F009428009A94D7 /* Math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C4721F009428009A94D7 /* Math.cpp */; };
  22. 9223C4801F009428009A94D7 /* SpriteComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C4761F009428009A94D7 /* SpriteComponent.cpp */; };
  23. 9223C48B1F0CA3CE009A94D7 /* MoveComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C48A1F0CA3CE009A94D7 /* MoveComponent.cpp */; };
  24. 9223C4951F0CA766009A94D7 /* CircleComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9223C4911F0CA766009A94D7 /* CircleComponent.cpp */; };
  25. 92CF0D791F3BBF140086A0F3 /* VertexArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92CF0D771F3BBF140086A0F3 /* VertexArray.cpp */; };
  26. 92D324FB1B697389005A86C7 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92D324FA1B697389005A86C7 /* CoreFoundation.framework */; };
  27. 92E46E941B6353E50035CD21 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92E46E931B6353E50035CD21 /* OpenGL.framework */; };
  28. /* End PBXBuildFile section */
  29. /* Begin PBXFileReference section */
  30. 9206FDC31F13F7E8005078A2 /* Shaders */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Shaders; sourceTree = "<group>"; };
  31. 9206FDC41F140707005078A2 /* Texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Texture.cpp; sourceTree = "<group>"; };
  32. 9206FDC51F140707005078A2 /* Texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Texture.h; sourceTree = "<group>"; };
  33. 9206FDC71F140D40005078A2 /* Shader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Shader.cpp; sourceTree = "<group>"; };
  34. 9206FDC81F140D40005078A2 /* Shader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Shader.h; sourceTree = "<group>"; };
  35. 9216C5371FCFFDA200F72B29 /* Asteroid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Asteroid.cpp; sourceTree = "<group>"; };
  36. 9216C5381FCFFDA200F72B29 /* InputComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputComponent.h; sourceTree = "<group>"; };
  37. 9216C5391FCFFDA200F72B29 /* Random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Random.h; sourceTree = "<group>"; };
  38. 9216C53A1FCFFDA300F72B29 /* Random.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Random.cpp; sourceTree = "<group>"; };
  39. 9216C53B1FCFFDA300F72B29 /* Ship.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Ship.h; sourceTree = "<group>"; };
  40. 9216C53C1FCFFDA300F72B29 /* Laser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Laser.h; sourceTree = "<group>"; };
  41. 9216C53D1FCFFDA300F72B29 /* Laser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Laser.cpp; sourceTree = "<group>"; };
  42. 9216C53E1FCFFDA300F72B29 /* InputSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputSystem.h; sourceTree = "<group>"; };
  43. 9216C53F1FCFFDA300F72B29 /* Asteroid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Asteroid.h; sourceTree = "<group>"; };
  44. 9216C5401FCFFDA300F72B29 /* InputSystem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InputSystem.cpp; sourceTree = "<group>"; };
  45. 9216C5411FCFFDA400F72B29 /* Ship.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Ship.cpp; sourceTree = "<group>"; };
  46. 9216C5421FCFFDA400F72B29 /* InputComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InputComponent.cpp; sourceTree = "<group>"; };
  47. 9223C4671F009428009A94D7 /* Game.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Game.cpp; sourceTree = "<group>"; };
  48. 9223C4681F009428009A94D7 /* Actor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Actor.cpp; sourceTree = "<group>"; };
  49. 9223C4691F009428009A94D7 /* Actor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Actor.h; sourceTree = "<group>"; };
  50. 9223C46E1F009428009A94D7 /* Component.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Component.cpp; sourceTree = "<group>"; };
  51. 9223C46F1F009428009A94D7 /* Component.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Component.h; sourceTree = "<group>"; };
  52. 9223C4701F009428009A94D7 /* Game.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Game.h; sourceTree = "<group>"; };
  53. 9223C4711F009428009A94D7 /* Main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Main.cpp; sourceTree = "<group>"; };
  54. 9223C4721F009428009A94D7 /* Math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Math.cpp; sourceTree = "<group>"; };
  55. 9223C4731F009428009A94D7 /* Math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Math.h; sourceTree = "<group>"; };
  56. 9223C4761F009428009A94D7 /* SpriteComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SpriteComponent.cpp; sourceTree = "<group>"; };
  57. 9223C4771F009428009A94D7 /* SpriteComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpriteComponent.h; sourceTree = "<group>"; };
  58. 9223C48A1F0CA3CE009A94D7 /* MoveComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MoveComponent.cpp; sourceTree = "<group>"; };
  59. 9223C48C1F0CA3D4009A94D7 /* MoveComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MoveComponent.h; sourceTree = "<group>"; };
  60. 9223C4911F0CA766009A94D7 /* CircleComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CircleComponent.cpp; sourceTree = "<group>"; };
  61. 9223C4931F0CA766009A94D7 /* CircleComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CircleComponent.h; sourceTree = "<group>"; };
  62. 92CF0D771F3BBF140086A0F3 /* VertexArray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VertexArray.cpp; sourceTree = "<group>"; };
  63. 92CF0D781F3BBF140086A0F3 /* VertexArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VertexArray.h; sourceTree = "<group>"; };
  64. 92D324FA1B697389005A86C7 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
  65. 92E46DF71B634EA30035CD21 /* Game-mac */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "Game-mac"; sourceTree = BUILT_PRODUCTS_DIR; };
  66. 92E46E931B6353E50035CD21 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
  67. /* End PBXFileReference section */
  68. /* Begin PBXFrameworksBuildPhase section */
  69. 92E46DF41B634EA30035CD21 /* Frameworks */ = {
  70. isa = PBXFrameworksBuildPhase;
  71. buildActionMask = 2147483647;
  72. files = (
  73. 92D324FB1B697389005A86C7 /* CoreFoundation.framework in Frameworks */,
  74. 92E46E941B6353E50035CD21 /* OpenGL.framework in Frameworks */,
  75. );
  76. runOnlyForDeploymentPostprocessing = 0;
  77. };
  78. /* End PBXFrameworksBuildPhase section */
  79. /* Begin PBXGroup section */
  80. 92E46DEE1B634EA30035CD21 = {
  81. isa = PBXGroup;
  82. children = (
  83. 9223C4681F009428009A94D7 /* Actor.cpp */,
  84. 9223C4691F009428009A94D7 /* Actor.h */,
  85. 9216C5371FCFFDA200F72B29 /* Asteroid.cpp */,
  86. 9216C53F1FCFFDA300F72B29 /* Asteroid.h */,
  87. 9223C46E1F009428009A94D7 /* Component.cpp */,
  88. 9223C46F1F009428009A94D7 /* Component.h */,
  89. 9223C4911F0CA766009A94D7 /* CircleComponent.cpp */,
  90. 9223C4931F0CA766009A94D7 /* CircleComponent.h */,
  91. 9216C5421FCFFDA400F72B29 /* InputComponent.cpp */,
  92. 9216C5381FCFFDA200F72B29 /* InputComponent.h */,
  93. 9216C5401FCFFDA300F72B29 /* InputSystem.cpp */,
  94. 9216C53E1FCFFDA300F72B29 /* InputSystem.h */,
  95. 9223C4671F009428009A94D7 /* Game.cpp */,
  96. 9223C4701F009428009A94D7 /* Game.h */,
  97. 9216C53D1FCFFDA300F72B29 /* Laser.cpp */,
  98. 9216C53C1FCFFDA300F72B29 /* Laser.h */,
  99. 9223C4711F009428009A94D7 /* Main.cpp */,
  100. 9223C4721F009428009A94D7 /* Math.cpp */,
  101. 9223C4731F009428009A94D7 /* Math.h */,
  102. 9223C48A1F0CA3CE009A94D7 /* MoveComponent.cpp */,
  103. 9223C48C1F0CA3D4009A94D7 /* MoveComponent.h */,
  104. 9216C53A1FCFFDA300F72B29 /* Random.cpp */,
  105. 9216C5391FCFFDA200F72B29 /* Random.h */,
  106. 9206FDC71F140D40005078A2 /* Shader.cpp */,
  107. 9206FDC81F140D40005078A2 /* Shader.h */,
  108. 9216C5411FCFFDA400F72B29 /* Ship.cpp */,
  109. 9216C53B1FCFFDA300F72B29 /* Ship.h */,
  110. 9223C4761F009428009A94D7 /* SpriteComponent.cpp */,
  111. 9223C4771F009428009A94D7 /* SpriteComponent.h */,
  112. 9206FDC41F140707005078A2 /* Texture.cpp */,
  113. 9206FDC51F140707005078A2 /* Texture.h */,
  114. 92CF0D771F3BBF140086A0F3 /* VertexArray.cpp */,
  115. 92CF0D781F3BBF140086A0F3 /* VertexArray.h */,
  116. 9206FDC31F13F7E8005078A2 /* Shaders */,
  117. 92E46DF81B634EA30035CD21 /* Products */,
  118. 92D324FA1B697389005A86C7 /* CoreFoundation.framework */,
  119. 92E46E931B6353E50035CD21 /* OpenGL.framework */,
  120. );
  121. sourceTree = "<group>";
  122. };
  123. 92E46DF81B634EA30035CD21 /* Products */ = {
  124. isa = PBXGroup;
  125. children = (
  126. 92E46DF71B634EA30035CD21 /* Game-mac */,
  127. );
  128. name = Products;
  129. sourceTree = "<group>";
  130. };
  131. /* End PBXGroup section */
  132. /* Begin PBXNativeTarget section */
  133. 92E46DF61B634EA30035CD21 /* Game-mac */ = {
  134. isa = PBXNativeTarget;
  135. buildConfigurationList = 92E46DFE1B634EA40035CD21 /* Build configuration list for PBXNativeTarget "Game-mac" */;
  136. buildPhases = (
  137. 92E46DF31B634EA30035CD21 /* Sources */,
  138. 92E46DF41B634EA30035CD21 /* Frameworks */,
  139. 92E46EA11B63615B0035CD21 /* ShellScript */,
  140. );
  141. buildRules = (
  142. );
  143. dependencies = (
  144. );
  145. name = "Game-mac";
  146. productName = "Game-mac";
  147. productReference = 92E46DF71B634EA30035CD21 /* Game-mac */;
  148. productType = "com.apple.product-type.tool";
  149. };
  150. /* End PBXNativeTarget section */
  151. /* Begin PBXProject section */
  152. 92E46DEF1B634EA30035CD21 /* Project object */ = {
  153. isa = PBXProject;
  154. attributes = {
  155. LastUpgradeCheck = 0920;
  156. ORGANIZATIONNAME = "Sanjay Madhav";
  157. TargetAttributes = {
  158. 92E46DF61B634EA30035CD21 = {
  159. CreatedOnToolsVersion = 6.4;
  160. };
  161. };
  162. };
  163. buildConfigurationList = 92E46DF21B634EA30035CD21 /* Build configuration list for PBXProject "Chapter08-mac" */;
  164. compatibilityVersion = "Xcode 3.2";
  165. developmentRegion = English;
  166. hasScannedForEncodings = 0;
  167. knownRegions = (
  168. en,
  169. );
  170. mainGroup = 92E46DEE1B634EA30035CD21;
  171. productRefGroup = 92E46DF81B634EA30035CD21 /* Products */;
  172. projectDirPath = "";
  173. projectRoot = "";
  174. targets = (
  175. 92E46DF61B634EA30035CD21 /* Game-mac */,
  176. );
  177. };
  178. /* End PBXProject section */
  179. /* Begin PBXShellScriptBuildPhase section */
  180. 92E46EA11B63615B0035CD21 /* ShellScript */ = {
  181. isa = PBXShellScriptBuildPhase;
  182. buildActionMask = 2147483647;
  183. files = (
  184. );
  185. inputPaths = (
  186. );
  187. outputPaths = (
  188. );
  189. runOnlyForDeploymentPostprocessing = 0;
  190. shellPath = /bin/sh;
  191. shellScript = "if [ -d \"$BUILD_DIR/Debug\" ]; then\n cp \"$SRCROOT\"/../external/GLEW/lib/mac/*.dylib $BUILD_DIR/Debug\n cp \"$SRCROOT\"/../external/SDL/lib/mac/*.dylib $BUILD_DIR/Debug\nfi\n\nif [ -d \"$BUILD_DIR/Release\" ]; then\n cp \"$SRCROOT\"/../external/GLEW/lib/mac/*.dylib $BUILD_DIR/Release\n cp \"$SRCROOT\"/../external/SDL/lib/mac/*.dylib $BUILD_DIR/Release\nfi";
  192. };
  193. /* End PBXShellScriptBuildPhase section */
  194. /* Begin PBXSourcesBuildPhase section */
  195. 92E46DF31B634EA30035CD21 /* Sources */ = {
  196. isa = PBXSourcesBuildPhase;
  197. buildActionMask = 2147483647;
  198. files = (
  199. 9223C47D1F009428009A94D7 /* Main.cpp in Sources */,
  200. 9223C47E1F009428009A94D7 /* Math.cpp in Sources */,
  201. 9223C4781F009428009A94D7 /* Game.cpp in Sources */,
  202. 9216C5451FCFFDA400F72B29 /* Laser.cpp in Sources */,
  203. 9216C5481FCFFDA400F72B29 /* InputComponent.cpp in Sources */,
  204. 9216C5461FCFFDA400F72B29 /* InputSystem.cpp in Sources */,
  205. 9223C4801F009428009A94D7 /* SpriteComponent.cpp in Sources */,
  206. 9216C5431FCFFDA400F72B29 /* Asteroid.cpp in Sources */,
  207. 92CF0D791F3BBF140086A0F3 /* VertexArray.cpp in Sources */,
  208. 9223C48B1F0CA3CE009A94D7 /* MoveComponent.cpp in Sources */,
  209. 9206FDC91F140D40005078A2 /* Shader.cpp in Sources */,
  210. 9223C4791F009428009A94D7 /* Actor.cpp in Sources */,
  211. 9223C4951F0CA766009A94D7 /* CircleComponent.cpp in Sources */,
  212. 9216C5441FCFFDA400F72B29 /* Random.cpp in Sources */,
  213. 9216C5471FCFFDA400F72B29 /* Ship.cpp in Sources */,
  214. 9223C47C1F009428009A94D7 /* Component.cpp in Sources */,
  215. 9206FDC61F140707005078A2 /* Texture.cpp in Sources */,
  216. );
  217. runOnlyForDeploymentPostprocessing = 0;
  218. };
  219. /* End PBXSourcesBuildPhase section */
  220. /* Begin XCBuildConfiguration section */
  221. 92E46DFC1B634EA40035CD21 /* Debug */ = {
  222. isa = XCBuildConfiguration;
  223. buildSettings = {
  224. ALWAYS_SEARCH_USER_PATHS = NO;
  225. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  226. CLANG_CXX_LIBRARY = "libc++";
  227. CLANG_ENABLE_MODULES = YES;
  228. CLANG_ENABLE_OBJC_ARC = YES;
  229. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  230. CLANG_WARN_BOOL_CONVERSION = YES;
  231. CLANG_WARN_COMMA = YES;
  232. CLANG_WARN_CONSTANT_CONVERSION = YES;
  233. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  234. CLANG_WARN_EMPTY_BODY = YES;
  235. CLANG_WARN_ENUM_CONVERSION = YES;
  236. CLANG_WARN_INFINITE_RECURSION = YES;
  237. CLANG_WARN_INT_CONVERSION = YES;
  238. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  239. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  240. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  241. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  242. CLANG_WARN_STRICT_PROTOTYPES = YES;
  243. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  244. CLANG_WARN_UNREACHABLE_CODE = YES;
  245. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  246. COPY_PHASE_STRIP = NO;
  247. DEBUG_INFORMATION_FORMAT = dwarf;
  248. ENABLE_STRICT_OBJC_MSGSEND = YES;
  249. ENABLE_TESTABILITY = YES;
  250. GCC_C_LANGUAGE_STANDARD = gnu99;
  251. GCC_DYNAMIC_NO_PIC = NO;
  252. GCC_NO_COMMON_BLOCKS = YES;
  253. GCC_OPTIMIZATION_LEVEL = 0;
  254. GCC_PREPROCESSOR_DEFINITIONS = (
  255. "DEBUG=1",
  256. "$(inherited)",
  257. );
  258. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  259. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  260. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  261. GCC_WARN_UNDECLARED_SELECTOR = YES;
  262. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  263. GCC_WARN_UNUSED_FUNCTION = YES;
  264. GCC_WARN_UNUSED_VARIABLE = YES;
  265. MACOSX_DEPLOYMENT_TARGET = 10.10;
  266. MTL_ENABLE_DEBUG_INFO = YES;
  267. ONLY_ACTIVE_ARCH = YES;
  268. SDKROOT = macosx;
  269. };
  270. name = Debug;
  271. };
  272. 92E46DFD1B634EA40035CD21 /* Release */ = {
  273. isa = XCBuildConfiguration;
  274. buildSettings = {
  275. ALWAYS_SEARCH_USER_PATHS = NO;
  276. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  277. CLANG_CXX_LIBRARY = "libc++";
  278. CLANG_ENABLE_MODULES = YES;
  279. CLANG_ENABLE_OBJC_ARC = YES;
  280. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  281. CLANG_WARN_BOOL_CONVERSION = YES;
  282. CLANG_WARN_COMMA = YES;
  283. CLANG_WARN_CONSTANT_CONVERSION = YES;
  284. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  285. CLANG_WARN_EMPTY_BODY = YES;
  286. CLANG_WARN_ENUM_CONVERSION = YES;
  287. CLANG_WARN_INFINITE_RECURSION = YES;
  288. CLANG_WARN_INT_CONVERSION = YES;
  289. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  290. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  291. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  292. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  293. CLANG_WARN_STRICT_PROTOTYPES = YES;
  294. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  295. CLANG_WARN_UNREACHABLE_CODE = YES;
  296. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  297. COPY_PHASE_STRIP = NO;
  298. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  299. ENABLE_NS_ASSERTIONS = NO;
  300. ENABLE_STRICT_OBJC_MSGSEND = YES;
  301. GCC_C_LANGUAGE_STANDARD = gnu99;
  302. GCC_NO_COMMON_BLOCKS = YES;
  303. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  304. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  305. GCC_WARN_UNDECLARED_SELECTOR = YES;
  306. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  307. GCC_WARN_UNUSED_FUNCTION = YES;
  308. GCC_WARN_UNUSED_VARIABLE = YES;
  309. MACOSX_DEPLOYMENT_TARGET = 10.10;
  310. MTL_ENABLE_DEBUG_INFO = NO;
  311. SDKROOT = macosx;
  312. };
  313. name = Release;
  314. };
  315. 92E46DFF1B634EA40035CD21 /* Debug */ = {
  316. isa = XCBuildConfiguration;
  317. buildSettings = {
  318. CLANG_CXX_LANGUAGE_STANDARD = "c++14";
  319. FRAMEWORK_SEARCH_PATHS = "";
  320. GCC_ENABLE_CPP_RTTI = YES;
  321. HEADER_SEARCH_PATHS = (
  322. "$(inherited)",
  323. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
  324. "$(SRCROOT)/../external/SDL/include",
  325. "$(SRCROOT)/../external/GLEW/include",
  326. "$(SRCROOT)/../external/SOIL/include",
  327. );
  328. LIBRARY_SEARCH_PATHS = (
  329. "$(SRCROOT)/../external/GLEW/lib/mac",
  330. "$(SRCROOT)/../external/SDL/lib/mac",
  331. "$(SRCROOT)/../external/SOIL/lib/mac",
  332. );
  333. OTHER_LDFLAGS = (
  334. "-lGLEW.2.1.0",
  335. "-lSDL2-2.0.0",
  336. "-lSDL2_mixer-2.0.0",
  337. "-lSDL2_ttf-2.0.0",
  338. "-lSOIL",
  339. "-lSDL2_image-2.0.0",
  340. );
  341. PRODUCT_NAME = "$(TARGET_NAME)";
  342. };
  343. name = Debug;
  344. };
  345. 92E46E001B634EA40035CD21 /* Release */ = {
  346. isa = XCBuildConfiguration;
  347. buildSettings = {
  348. CLANG_CXX_LANGUAGE_STANDARD = "c++14";
  349. FRAMEWORK_SEARCH_PATHS = "";
  350. GCC_ENABLE_CPP_RTTI = YES;
  351. HEADER_SEARCH_PATHS = (
  352. "$(inherited)",
  353. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
  354. "$(SRCROOT)/../external/SDL/include",
  355. "$(SRCROOT)/../external/GLEW/include",
  356. "$(SRCROOT)/../external/SOIL/include",
  357. );
  358. LIBRARY_SEARCH_PATHS = (
  359. "$(SRCROOT)/../external/GLEW/lib/mac",
  360. "$(SRCROOT)/../external/SDL/lib/mac",
  361. "$(SRCROOT)/../external/SOIL/lib/mac",
  362. );
  363. OTHER_LDFLAGS = (
  364. "-lGLEW.2.1.0",
  365. "-lSDL2-2.0.0",
  366. "-lSDL2_mixer-2.0.0",
  367. "-lSDL2_ttf-2.0.0",
  368. "-lSOIL",
  369. "-lSDL2_image-2.0.0",
  370. );
  371. PRODUCT_NAME = "$(TARGET_NAME)";
  372. };
  373. name = Release;
  374. };
  375. /* End XCBuildConfiguration section */
  376. /* Begin XCConfigurationList section */
  377. 92E46DF21B634EA30035CD21 /* Build configuration list for PBXProject "Chapter08-mac" */ = {
  378. isa = XCConfigurationList;
  379. buildConfigurations = (
  380. 92E46DFC1B634EA40035CD21 /* Debug */,
  381. 92E46DFD1B634EA40035CD21 /* Release */,
  382. );
  383. defaultConfigurationIsVisible = 0;
  384. defaultConfigurationName = Release;
  385. };
  386. 92E46DFE1B634EA40035CD21 /* Build configuration list for PBXNativeTarget "Game-mac" */ = {
  387. isa = XCConfigurationList;
  388. buildConfigurations = (
  389. 92E46DFF1B634EA40035CD21 /* Debug */,
  390. 92E46E001B634EA40035CD21 /* Release */,
  391. );
  392. defaultConfigurationIsVisible = 0;
  393. defaultConfigurationName = Release;
  394. };
  395. /* End XCConfigurationList section */
  396. };
  397. rootObject = 92E46DEF1B634EA30035CD21 /* Project object */;
  398. }