Skip to content

Commit 907368b

Browse files
Update ReadMe and version to 1.1
1 parent cd01fe6 commit 907368b

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

BuildSettingExtractor/BuildSettingExtractor-Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.0</string>
20+
<string>1.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>1</string>
24+
<string>2</string>
2525
<key>LSMinimumSystemVersion</key>
2626
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
2727
<key>NSHumanReadableCopyright</key>
28-
<string>Copyright © 2014 Tapas Software. All rights reserved.</string>
28+
<string>Copyright © 2014-2015 Tapas Software. All rights reserved.</string>
2929
<key>NSMainNibFile</key>
3030
<string>MainMenu</string>
3131
<key>NSPrincipalClass</key>

ReadMe.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,51 @@ Using the app:
1313
2. Drag an Xcode Project file (xcodeproj) to the app window
1414
3. Choose a destination folder
1515

16-
**Notes**
16+
Choose Preferences… (Command-,) from the BuildSettingExtractor menu to set generation options.
17+
18+
###Notes###
1719

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

23-
**Version History**
25+
###Generated Files###
26+
27+
The generated xcconfig files include build setting explanations gleaned from Xcode:
28+
29+
// Framework Search Paths
30+
//
31+
// This is a list of paths to folders containing frameworks to be searched by the
32+
// compiler for both included or imported header files when compiling C, Objective-C,
33+
// C++, or Objective-C++, and by the linker for frameworks used by the product. Paths are
34+
// delimited by whitespace, so any paths with spaces in them need to be properly quoted.
35+
// [-F]
36+
37+
FRAMEWORK_SEARCH_PATHS = $(DEVELOPER_FRAMEWORKS_DIR) $(inherited)
38+
39+
40+
// Info.plist File
41+
//
42+
// This is the project-relative path to the plist file that contains the Info.plist
43+
// information used by bundles.
44+
45+
INFOPLIST_FILE = BuildSettingExtractorTests/BuildSettingExtractorTests-Info.plist
46+
47+
These comments can be turned off in the Preferences sheet for a more compact file:
48+
49+
FRAMEWORK_SEARCH_PATHS = $(DEVELOPER_FRAMEWORKS_DIR) $(inherited)
50+
INFOPLIST_FILE = BuildSettingExtractorTests/BuildSettingExtractorTests-Info.plist
51+
52+
###Version History###
53+
54+
*Version 1.1*
55+
*February 7, 2015*
56+
57+
– Added build settings explaination comments gleaned from Xcode.
58+
– Files are shown in Finder after they are generated.
59+
– Both options can be turned off in new Preferences pane.
60+
– Extraction and file generation now occurs in the background.
2461

2562
*Version 1.0*
2663
*January 31, 2015*

0 commit comments

Comments
 (0)