Skip to content

Commit

Permalink
Send R.swift output to a log
Browse files Browse the repository at this point in the history
  • Loading branch information
mac-cain13 committed Jul 22, 2015
1 parent acf66aa commit f5521a1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ xcuserdata
xcshareddata
ResourceApp/rswift
ResourceApp/R.generated.swift
ResourceApp/rswift.log
18 changes: 17 additions & 1 deletion ResourceApp/ResourceApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
objects = {

/* Begin PBXBuildFile section */
D50175BB1B5FEF6E00DB8314 /* rswift.log in Resources */ = {isa = PBXBuildFile; fileRef = D50175BA1B5FEF6E00DB8314 /* rswift.log */; };
D50175BE1B5FEFD000DB8314 /* Secondary.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D50175BC1B5FEFD000DB8314 /* Secondary.storyboard */; };
D55C6CBE1B5D757300301B0D /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55C6CBD1B5D757300301B0D /* AppDelegate.swift */; };
D55C6CC01B5D757300301B0D /* FirstViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55C6CBF1B5D757300301B0D /* FirstViewController.swift */; };
D55C6CC21B5D757300301B0D /* SecondViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D55C6CC11B5D757300301B0D /* SecondViewController.swift */; };
Expand All @@ -29,6 +31,8 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
D50175BA1B5FEF6E00DB8314 /* rswift.log */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rswift.log; sourceTree = SOURCE_ROOT; };
D50175BD1B5FEFD000DB8314 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Secondary.storyboard; sourceTree = "<group>"; };
D55C6CB81B5D757300301B0D /* ResourceApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ResourceApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
D55C6CBC1B5D757300301B0D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
D55C6CBD1B5D757300301B0D /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -86,6 +90,7 @@
D55C6CBF1B5D757300301B0D /* FirstViewController.swift */,
D55C6CC11B5D757300301B0D /* SecondViewController.swift */,
D55C6CC31B5D757300301B0D /* Main.storyboard */,
D50175BC1B5FEFD000DB8314 /* Secondary.storyboard */,
D55C6CC61B5D757300301B0D /* Images.xcassets */,
D55C6CC81B5D757300301B0D /* LaunchScreen.xib */,
D55C6CBB1B5D757300301B0D /* Supporting Files */,
Expand All @@ -96,6 +101,7 @@
D55C6CBB1B5D757300301B0D /* Supporting Files */ = {
isa = PBXGroup;
children = (
D50175BA1B5FEF6E00DB8314 /* rswift.log */,
D5DE480D1B5E1CC7000F6A85 /* R.generated.swift */,
D55C6CBC1B5D757300301B0D /* Info.plist */,
);
Expand Down Expand Up @@ -200,7 +206,9 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D50175BE1B5FEFD000DB8314 /* Secondary.storyboard in Resources */,
D55C6CC51B5D757300301B0D /* Main.storyboard in Resources */,
D50175BB1B5FEF6E00DB8314 /* rswift.log in Resources */,
D55C6CCA1B5D757300301B0D /* LaunchScreen.xib in Resources */,
D55C6CC71B5D757300301B0D /* Images.xcassets in Resources */,
);
Expand Down Expand Up @@ -228,7 +236,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"$SRCROOT/rswift\" \"$SRCROOT\"";
shellScript = "\"$SRCROOT/rswift\" \"$SRCROOT\" > ./rswift.log";
};
/* End PBXShellScriptBuildPhase section */

Expand Down Expand Up @@ -264,6 +272,14 @@
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
D50175BC1B5FEFD000DB8314 /* Secondary.storyboard */ = {
isa = PBXVariantGroup;
children = (
D50175BD1B5FEFD000DB8314 /* Base */,
);
name = Secondary.storyboard;
sourceTree = "<group>";
};
D55C6CC31B5D757300301B0D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
Expand Down

0 comments on commit f5521a1

Please sign in to comment.