project.pbxproj 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. CD21AE2B1E4A3EB000536178 /* iterator_tc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD21AE291E4A3EB000536178 /* iterator_tc.cpp */; };
  10. /* End PBXBuildFile section */
  11. /* Begin PBXCopyFilesBuildPhase section */
  12. CD21AE1B1E4A3E7900536178 /* CopyFiles */ = {
  13. isa = PBXCopyFilesBuildPhase;
  14. buildActionMask = 2147483647;
  15. dstPath = /usr/share/man/man1/;
  16. dstSubfolderSpec = 0;
  17. files = (
  18. );
  19. runOnlyForDeploymentPostprocessing = 1;
  20. };
  21. /* End PBXCopyFilesBuildPhase section */
  22. /* Begin PBXFileReference section */
  23. CD21AE1D1E4A3E7900536178 /* iterator_tc */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = iterator_tc; sourceTree = BUILT_PRODUCTS_DIR; };
  24. CD21AE291E4A3EB000536178 /* iterator_tc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iterator_tc.cpp; sourceTree = "<group>"; };
  25. CD21AE2A1E4A3EB000536178 /* join_iterator.t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = join_iterator.t.h; sourceTree = "<group>"; };
  26. CD21AE2C1E4A3EC100536178 /* join_iterator.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = join_iterator.hpp; sourceTree = "<group>"; };
  27. CD21AE2E1E4A3F8E00536178 /* end_aware_iterator.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = end_aware_iterator.hpp; sourceTree = "<group>"; };
  28. CD21AE2F1E4A428D00536178 /* end_aware_iterator.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = end_aware_iterator.t.h; sourceTree = "<group>"; };
  29. CD7172E91E57C6580048DFFF /* recursive_iterator.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = recursive_iterator.hpp; sourceTree = "<group>"; };
  30. CD7172EA1E57C91D0048DFFF /* recursive_iterator.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = recursive_iterator.t.h; sourceTree = "<group>"; };
  31. CD7172EB1E57ED390048DFFF /* flatten_iterator.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = flatten_iterator.hpp; sourceTree = "<group>"; };
  32. CD7172EC1E5897B80048DFFF /* iterator_fwd.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = iterator_fwd.hpp; sourceTree = "<group>"; };
  33. /* End PBXFileReference section */
  34. /* Begin PBXFrameworksBuildPhase section */
  35. CD21AE1A1E4A3E7900536178 /* Frameworks */ = {
  36. isa = PBXFrameworksBuildPhase;
  37. buildActionMask = 2147483647;
  38. files = (
  39. );
  40. runOnlyForDeploymentPostprocessing = 0;
  41. };
  42. /* End PBXFrameworksBuildPhase section */
  43. /* Begin PBXGroup section */
  44. CD21AE141E4A3E7900536178 = {
  45. isa = PBXGroup;
  46. children = (
  47. CD21AE281E4A3E8C00536178 /* src */,
  48. CD21AE271E4A3E8600536178 /* test */,
  49. CD21AE1E1E4A3E7900536178 /* Products */,
  50. );
  51. sourceTree = "<group>";
  52. };
  53. CD21AE1E1E4A3E7900536178 /* Products */ = {
  54. isa = PBXGroup;
  55. children = (
  56. CD21AE1D1E4A3E7900536178 /* iterator_tc */,
  57. );
  58. name = Products;
  59. sourceTree = "<group>";
  60. };
  61. CD21AE271E4A3E8600536178 /* test */ = {
  62. isa = PBXGroup;
  63. children = (
  64. CD21AE2F1E4A428D00536178 /* end_aware_iterator.t.h */,
  65. CD21AE2A1E4A3EB000536178 /* join_iterator.t.h */,
  66. CD7172EA1E57C91D0048DFFF /* recursive_iterator.t.h */,
  67. CD21AE291E4A3EB000536178 /* iterator_tc.cpp */,
  68. );
  69. name = test;
  70. sourceTree = "<group>";
  71. };
  72. CD21AE281E4A3E8C00536178 /* src */ = {
  73. isa = PBXGroup;
  74. children = (
  75. CD7172EC1E5897B80048DFFF /* iterator_fwd.hpp */,
  76. CD21AE2E1E4A3F8E00536178 /* end_aware_iterator.hpp */,
  77. CD21AE2C1E4A3EC100536178 /* join_iterator.hpp */,
  78. CD7172E91E57C6580048DFFF /* recursive_iterator.hpp */,
  79. CD7172EB1E57ED390048DFFF /* flatten_iterator.hpp */,
  80. );
  81. name = src;
  82. sourceTree = "<group>";
  83. };
  84. /* End PBXGroup section */
  85. /* Begin PBXNativeTarget section */
  86. CD21AE1C1E4A3E7900536178 /* iterator_tc */ = {
  87. isa = PBXNativeTarget;
  88. buildConfigurationList = CD21AE241E4A3E7900536178 /* Build configuration list for PBXNativeTarget "iterator_tc" */;
  89. buildPhases = (
  90. CD21AE2D1E4A3EF600536178 /* ShellScript */,
  91. CD21AE191E4A3E7900536178 /* Sources */,
  92. CD21AE1A1E4A3E7900536178 /* Frameworks */,
  93. CD21AE1B1E4A3E7900536178 /* CopyFiles */,
  94. );
  95. buildRules = (
  96. );
  97. dependencies = (
  98. );
  99. name = iterator_tc;
  100. productName = iterator;
  101. productReference = CD21AE1D1E4A3E7900536178 /* iterator_tc */;
  102. productType = "com.apple.product-type.tool";
  103. };
  104. /* End PBXNativeTarget section */
  105. /* Begin PBXProject section */
  106. CD21AE151E4A3E7900536178 /* Project object */ = {
  107. isa = PBXProject;
  108. attributes = {
  109. LastUpgradeCheck = 0720;
  110. ORGANIZATIONNAME = "Sam Jaffe";
  111. TargetAttributes = {
  112. CD21AE1C1E4A3E7900536178 = {
  113. CreatedOnToolsVersion = 7.2.1;
  114. };
  115. };
  116. };
  117. buildConfigurationList = CD21AE181E4A3E7900536178 /* Build configuration list for PBXProject "iterator" */;
  118. compatibilityVersion = "Xcode 3.2";
  119. developmentRegion = English;
  120. hasScannedForEncodings = 0;
  121. knownRegions = (
  122. en,
  123. );
  124. mainGroup = CD21AE141E4A3E7900536178;
  125. productRefGroup = CD21AE1E1E4A3E7900536178 /* Products */;
  126. projectDirPath = "";
  127. projectRoot = "";
  128. targets = (
  129. CD21AE1C1E4A3E7900536178 /* iterator_tc */,
  130. );
  131. };
  132. /* End PBXProject section */
  133. /* Begin PBXShellScriptBuildPhase section */
  134. CD21AE2D1E4A3EF600536178 /* ShellScript */ = {
  135. isa = PBXShellScriptBuildPhase;
  136. buildActionMask = 2147483647;
  137. files = (
  138. );
  139. inputPaths = (
  140. );
  141. outputPaths = (
  142. );
  143. runOnlyForDeploymentPostprocessing = 0;
  144. shellPath = /bin/sh;
  145. shellScript = "cxxtestgen --error-printer -o iterator_tc.cpp join_iterator.t.h end_aware_iterator.t.h recursive_iterator.t.h";
  146. };
  147. /* End PBXShellScriptBuildPhase section */
  148. /* Begin PBXSourcesBuildPhase section */
  149. CD21AE191E4A3E7900536178 /* Sources */ = {
  150. isa = PBXSourcesBuildPhase;
  151. buildActionMask = 2147483647;
  152. files = (
  153. CD21AE2B1E4A3EB000536178 /* iterator_tc.cpp in Sources */,
  154. );
  155. runOnlyForDeploymentPostprocessing = 0;
  156. };
  157. /* End PBXSourcesBuildPhase section */
  158. /* Begin XCBuildConfiguration section */
  159. CD21AE221E4A3E7900536178 /* Debug */ = {
  160. isa = XCBuildConfiguration;
  161. buildSettings = {
  162. ALWAYS_SEARCH_USER_PATHS = NO;
  163. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  164. CLANG_CXX_LIBRARY = "libc++";
  165. CLANG_ENABLE_MODULES = YES;
  166. CLANG_ENABLE_OBJC_ARC = YES;
  167. CLANG_WARN_BOOL_CONVERSION = YES;
  168. CLANG_WARN_CONSTANT_CONVERSION = YES;
  169. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  170. CLANG_WARN_EMPTY_BODY = YES;
  171. CLANG_WARN_ENUM_CONVERSION = YES;
  172. CLANG_WARN_INT_CONVERSION = YES;
  173. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  174. CLANG_WARN_UNREACHABLE_CODE = YES;
  175. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  176. CODE_SIGN_IDENTITY = "-";
  177. COPY_PHASE_STRIP = NO;
  178. DEBUG_INFORMATION_FORMAT = dwarf;
  179. ENABLE_STRICT_OBJC_MSGSEND = YES;
  180. ENABLE_TESTABILITY = YES;
  181. GCC_C_LANGUAGE_STANDARD = gnu99;
  182. GCC_DYNAMIC_NO_PIC = NO;
  183. GCC_NO_COMMON_BLOCKS = YES;
  184. GCC_OPTIMIZATION_LEVEL = 0;
  185. GCC_PREPROCESSOR_DEFINITIONS = (
  186. "DEBUG=1",
  187. "$(inherited)",
  188. );
  189. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  190. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  191. GCC_WARN_UNDECLARED_SELECTOR = YES;
  192. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  193. GCC_WARN_UNUSED_FUNCTION = YES;
  194. GCC_WARN_UNUSED_VARIABLE = YES;
  195. MACOSX_DEPLOYMENT_TARGET = 10.10;
  196. MTL_ENABLE_DEBUG_INFO = YES;
  197. ONLY_ACTIVE_ARCH = YES;
  198. SDKROOT = macosx;
  199. };
  200. name = Debug;
  201. };
  202. CD21AE231E4A3E7900536178 /* Release */ = {
  203. isa = XCBuildConfiguration;
  204. buildSettings = {
  205. ALWAYS_SEARCH_USER_PATHS = NO;
  206. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  207. CLANG_CXX_LIBRARY = "libc++";
  208. CLANG_ENABLE_MODULES = YES;
  209. CLANG_ENABLE_OBJC_ARC = YES;
  210. CLANG_WARN_BOOL_CONVERSION = YES;
  211. CLANG_WARN_CONSTANT_CONVERSION = YES;
  212. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  213. CLANG_WARN_EMPTY_BODY = YES;
  214. CLANG_WARN_ENUM_CONVERSION = YES;
  215. CLANG_WARN_INT_CONVERSION = YES;
  216. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  217. CLANG_WARN_UNREACHABLE_CODE = YES;
  218. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  219. CODE_SIGN_IDENTITY = "-";
  220. COPY_PHASE_STRIP = NO;
  221. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  222. ENABLE_NS_ASSERTIONS = NO;
  223. ENABLE_STRICT_OBJC_MSGSEND = YES;
  224. GCC_C_LANGUAGE_STANDARD = gnu99;
  225. GCC_NO_COMMON_BLOCKS = YES;
  226. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  227. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  228. GCC_WARN_UNDECLARED_SELECTOR = YES;
  229. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  230. GCC_WARN_UNUSED_FUNCTION = YES;
  231. GCC_WARN_UNUSED_VARIABLE = YES;
  232. MACOSX_DEPLOYMENT_TARGET = 10.10;
  233. MTL_ENABLE_DEBUG_INFO = NO;
  234. SDKROOT = macosx;
  235. };
  236. name = Release;
  237. };
  238. CD21AE251E4A3E7900536178 /* Debug */ = {
  239. isa = XCBuildConfiguration;
  240. buildSettings = {
  241. HEADER_SEARCH_PATHS = /usr/local/include/;
  242. PRODUCT_NAME = "$(TARGET_NAME)";
  243. };
  244. name = Debug;
  245. };
  246. CD21AE261E4A3E7900536178 /* Release */ = {
  247. isa = XCBuildConfiguration;
  248. buildSettings = {
  249. HEADER_SEARCH_PATHS = /usr/local/include/;
  250. PRODUCT_NAME = "$(TARGET_NAME)";
  251. };
  252. name = Release;
  253. };
  254. /* End XCBuildConfiguration section */
  255. /* Begin XCConfigurationList section */
  256. CD21AE181E4A3E7900536178 /* Build configuration list for PBXProject "iterator" */ = {
  257. isa = XCConfigurationList;
  258. buildConfigurations = (
  259. CD21AE221E4A3E7900536178 /* Debug */,
  260. CD21AE231E4A3E7900536178 /* Release */,
  261. );
  262. defaultConfigurationIsVisible = 0;
  263. defaultConfigurationName = Release;
  264. };
  265. CD21AE241E4A3E7900536178 /* Build configuration list for PBXNativeTarget "iterator_tc" */ = {
  266. isa = XCConfigurationList;
  267. buildConfigurations = (
  268. CD21AE251E4A3E7900536178 /* Debug */,
  269. CD21AE261E4A3E7900536178 /* Release */,
  270. );
  271. defaultConfigurationIsVisible = 0;
  272. defaultConfigurationName = Release;
  273. };
  274. /* End XCConfigurationList section */
  275. };
  276. rootObject = CD21AE151E4A3E7900536178 /* Project object */;
  277. }