Skip to content

Commit

Permalink
Update ReadMe and version to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dempseyatgithub committed Feb 7, 2015
1 parent cd01fe6 commit 907368b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 5 deletions.
6 changes: 3 additions & 3 deletions BuildSettingExtractor/BuildSettingExtractor-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>2</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2014 Tapas Software. All rights reserved.</string>
<string>Copyright © 2014-2015 Tapas Software. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
Expand Down
41 changes: 39 additions & 2 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,51 @@ Using the app:
2. Drag an Xcode Project file (xcodeproj) to the app window
3. Choose a destination folder

**Notes**
Choose Preferences… (Command-,) from the BuildSettingExtractor menu to set generation options.

###Notes###

- BuildSettingExtractor does not alter the original Xcode project file.
- BuildSettingExtractor does not update existing xcconfig files, it does a one-time extraction.
- BuildSettingExtractor does not hoist shared target build settings to the project level.
- Do not taunt BuildSettingExtractor.

**Version History**
###Generated Files###

The generated xcconfig files include build setting explanations gleaned from Xcode:

// Framework Search Paths
//
// This is a list of paths to folders containing frameworks to be searched by the
// compiler for both included or imported header files when compiling C, Objective-C,
// C++, or Objective-C++, and by the linker for frameworks used by the product. Paths are
// delimited by whitespace, so any paths with spaces in them need to be properly quoted.
// [-F]

FRAMEWORK_SEARCH_PATHS = $(DEVELOPER_FRAMEWORKS_DIR) $(inherited)


// Info.plist File
//
// This is the project-relative path to the plist file that contains the Info.plist
// information used by bundles.

INFOPLIST_FILE = BuildSettingExtractorTests/BuildSettingExtractorTests-Info.plist

These comments can be turned off in the Preferences sheet for a more compact file:

FRAMEWORK_SEARCH_PATHS = $(DEVELOPER_FRAMEWORKS_DIR) $(inherited)
INFOPLIST_FILE = BuildSettingExtractorTests/BuildSettingExtractorTests-Info.plist

###Version History###

*Version 1.1*
*February 7, 2015*

– Added build settings explaination comments gleaned from Xcode.
– Files are shown in Finder after they are generated.
– Both options can be turned off in new Preferences pane.
– Extraction and file generation now occurs in the background.

*Version 1.0*
*January 31, 2015*
Expand Down

0 comments on commit 907368b

Please sign in to comment.