Browse Source

Update Xcode project metadata

Samuel Jaffe 9 years ago
parent
commit
25fb8db815
1 changed files with 67 additions and 3 deletions
  1. 67 3
      pointers.xcodeproj/project.pbxproj

+ 67 - 3
pointers.xcodeproj/project.pbxproj

@@ -6,6 +6,10 @@
 	objectVersion = 46;
 	objects = {
 
+/* Begin PBXBuildFile section */
+		CDC3B0E61DF26319002A415B /* pointers_tc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDC3B0E51DF26319002A415B /* pointers_tc.cpp */; };
+/* End PBXBuildFile section */
+
 /* Begin PBXCopyFilesBuildPhase section */
 		CD3DA3F01D9B42BC001B53A0 /* CopyFiles */ = {
 			isa = PBXCopyFilesBuildPhase;
@@ -19,11 +23,20 @@
 /* End PBXCopyFilesBuildPhase section */
 
 /* Begin PBXFileReference section */
+		CD0364691E1F3F0B003B7B84 /* const_propogating_ptr.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const_propogating_ptr.t.h; sourceTree = "<group>"; };
+		CD03646A1E1F41DE003B7B84 /* const_ptr.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const_ptr.t.h; sourceTree = "<group>"; };
+		CD03646B1E1F42A1003B7B84 /* copy_ptr.t.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = copy_ptr.t.h; sourceTree = "<group>"; };
+		CD125DD81E1F00C200B53FB5 /* const_ptr.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = const_ptr.hpp; sourceTree = "<group>"; };
+		CD125DDA1E1F1B7500B53FB5 /* ptr_compare.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ptr_compare.hpp; sourceTree = "<group>"; };
 		CD3DA3F21D9B42BC001B53A0 /* pointers_tc */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = pointers_tc; sourceTree = BUILT_PRODUCTS_DIR; };
 		CD3DA3FC1D9B42DE001B53A0 /* pointer_fwd.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = pointer_fwd.hpp; sourceTree = "<group>"; };
-		CD3DA3FD1D9B42DE001B53A0 /* pointer_traits.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = pointer_traits.hpp; sourceTree = "<group>"; };
 		CD3DA3FE1D9B42DE001B53A0 /* maybe_null.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = maybe_null.hpp; sourceTree = "<group>"; };
 		CD3DA3FF1D9B42DE001B53A0 /* not_null.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = not_null.hpp; sourceTree = "<group>"; };
+		CDC3B0E31DF261D7002A415B /* not_null.t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = not_null.t.h; sourceTree = "<group>"; };
+		CDC3B0E51DF26319002A415B /* pointers_tc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pointers_tc.cpp; sourceTree = "<group>"; };
+		CDC3B0E71DF263B2002A415B /* maybe_null.t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = maybe_null.t.h; sourceTree = "<group>"; };
+		CDC3B0E81DF3645F002A415B /* const_propogating_ptr.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = const_propogating_ptr.hpp; sourceTree = "<group>"; };
+		CDC3B0E91DF794A6002A415B /* copy_ptr.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = copy_ptr.hpp; sourceTree = "<group>"; };
 /* End PBXFileReference section */
 
 /* Begin PBXFrameworksBuildPhase section */
@@ -37,13 +50,38 @@
 /* End PBXFrameworksBuildPhase section */
 
 /* Begin PBXGroup section */
-		CD3DA3E91D9B42BC001B53A0 = {
+		CD125DDB1E1F27E000B53FB5 /* test */ = {
+			isa = PBXGroup;
+			children = (
+				CD0364691E1F3F0B003B7B84 /* const_propogating_ptr.t.h */,
+				CD03646A1E1F41DE003B7B84 /* const_ptr.t.h */,
+				CD03646B1E1F42A1003B7B84 /* copy_ptr.t.h */,
+				CDC3B0E31DF261D7002A415B /* not_null.t.h */,
+				CDC3B0E71DF263B2002A415B /* maybe_null.t.h */,
+				CDC3B0E51DF26319002A415B /* pointers_tc.cpp */,
+			);
+			name = test;
+			sourceTree = "<group>";
+		};
+		CD125DDC1E1F27E600B53FB5 /* src */ = {
 			isa = PBXGroup;
 			children = (
 				CD3DA3FC1D9B42DE001B53A0 /* pointer_fwd.hpp */,
-				CD3DA3FD1D9B42DE001B53A0 /* pointer_traits.hpp */,
+				CD125DDA1E1F1B7500B53FB5 /* ptr_compare.hpp */,
+				CDC3B0E91DF794A6002A415B /* copy_ptr.hpp */,
+				CD125DD81E1F00C200B53FB5 /* const_ptr.hpp */,
+				CDC3B0E81DF3645F002A415B /* const_propogating_ptr.hpp */,
 				CD3DA3FE1D9B42DE001B53A0 /* maybe_null.hpp */,
 				CD3DA3FF1D9B42DE001B53A0 /* not_null.hpp */,
+			);
+			name = src;
+			sourceTree = "<group>";
+		};
+		CD3DA3E91D9B42BC001B53A0 = {
+			isa = PBXGroup;
+			children = (
+				CD125DDC1E1F27E600B53FB5 /* src */,
+				CD125DDB1E1F27E000B53FB5 /* test */,
 				CD3DA3F31D9B42BC001B53A0 /* Products */,
 			);
 			sourceTree = "<group>";
@@ -63,6 +101,7 @@
 			isa = PBXNativeTarget;
 			buildConfigurationList = CD3DA3F91D9B42BC001B53A0 /* Build configuration list for PBXNativeTarget "pointers_tc" */;
 			buildPhases = (
+				CDC3B0E41DF2622C002A415B /* ShellScript */,
 				CD3DA3EE1D9B42BC001B53A0 /* Sources */,
 				CD3DA3EF1D9B42BC001B53A0 /* Frameworks */,
 				CD3DA3F01D9B42BC001B53A0 /* CopyFiles */,
@@ -107,11 +146,33 @@
 		};
 /* End PBXProject section */
 
+/* Begin PBXShellScriptBuildPhase section */
+		CDC3B0E41DF2622C002A415B /* ShellScript */ = {
+			isa = PBXShellScriptBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+			);
+			inputPaths = (
+				"$(SRCROOT)/not_null.t.h",
+				"$(SRCROOT)/maybe_null.t.h",
+				"$(SRCROOT)/const_propogating_ptr.t.h",
+				"$(SRCROOT)/const_ptr.t.h",
+			);
+			outputPaths = (
+				"$(SRCROOT)/pointers_tc.cpp",
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+			shellPath = /bin/sh;
+			shellScript = "cxxtestgen --error-printer -o pointers_tc.cpp not_null.t.h maybe_null.t.h const_propogating_ptr.t.h const_ptr.t.h copy_ptr.t.h";
+		};
+/* End PBXShellScriptBuildPhase section */
+
 /* Begin PBXSourcesBuildPhase section */
 		CD3DA3EE1D9B42BC001B53A0 /* Sources */ = {
 			isa = PBXSourcesBuildPhase;
 			buildActionMask = 2147483647;
 			files = (
+				CDC3B0E61DF26319002A415B /* pointers_tc.cpp in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -200,6 +261,7 @@
 		CD3DA3FA1D9B42BC001B53A0 /* Debug */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
+				HEADER_SEARCH_PATHS = "${HOME}/Documents/Programming/Resources/cxxtest-4.4/";
 				PRODUCT_NAME = "$(TARGET_NAME)";
 			};
 			name = Debug;
@@ -207,6 +269,7 @@
 		CD3DA3FB1D9B42BC001B53A0 /* Release */ = {
 			isa = XCBuildConfiguration;
 			buildSettings = {
+				HEADER_SEARCH_PATHS = "${HOME}/Documents/Programming/Resources/cxxtest-4.4/";
 				PRODUCT_NAME = "$(TARGET_NAME)";
 			};
 			name = Release;
@@ -230,6 +293,7 @@
 				CD3DA3FB1D9B42BC001B53A0 /* Release */,
 			);
 			defaultConfigurationIsVisible = 0;
+			defaultConfigurationName = Release;
 		};
 /* End XCConfigurationList section */
 	};