Changeset 35278 in webkit for trunk/JavaScriptCore/Configurations
- Timestamp:
- Jul 21, 2008, 6:05:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/Configurations/Version.xcconfig
r35192 r35278 4 4 FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION); 5 5 6 // The bundle version isset based on the current build configuration, see below.6 // The bundle version and short version string are set based on the current build configuration, see below. 7 7 BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION)); 8 9 // The local builds are always just the major version with a Plus suffix. 10 BUNDLE_VERSION_Release = $(FULL_VERSION)+; 11 BUNDLE_VERSION_Debug = $(BUNDLE_VERSION_Release); 8 SHORT_VERSION_STRING = $(SHORT_VERSION_STRING_$(CONFIGURATION)) 12 9 13 10 // The system version prefix is based on the current system version. … … 20 17 // The production build always uses the full version with a system version prefix. 21 18 BUNDLE_VERSION_Production = $(SYSTEM_VERSION_PREFIX)$(FULL_VERSION); 19 BUNDLE_VERSION_ = $(BUNDLE_VERSION_Production); 22 20 23 // If $(CONFIGURATION) is undefined, use the Production version. 24 BUNDLE_VERSION_ = $(BUNDLE_VERSION_Production); 21 // The production build always uses the major version with a system version prefix 22 SHORT_VERSION_STRING_Production = $(SYSTEM_VERSION_PREFIX)$(MAJOR_VERSION); 23 SHORT_VERSION_STRING_ = $(SHORT_VERSION_STRING_Production); 24 25 // Local builds are the full version with a plus suffix. 26 BUNDLE_VERSION_Release = $(FULL_VERSION)+; 27 BUNDLE_VERSION_Debug = $(BUNDLE_VERSION_Release); 28 29 // Local builds use the major version with a plus suffix 30 SHORT_VERSION_STRING_Release = $(MAJOR_VERSION)+; 31 SHORT_VERSION_STRING_Debug = $(SHORT_VERSION_STRING_Release); 25 32 26 33 DYLIB_COMPATIBILITY_VERSION = 1;
Note:
See TracChangeset
for help on using the changeset viewer.