Changeset 305
- Timestamp:
- 10/27/06 11:14:52 (18 years ago)
- Location:
- trunk/launch
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/launch/launch/VERSION
r265 r305 1 1.1 d21 1.1b1 -
trunk/launch/launch/launch.xcodeproj/project.pbxproj
r268 r305 15 15 /* End PBXBuildFile section */ 16 16 17 /* Begin PBXBuildStyle section */18 014CEA490018CE3211CA2923 /* Development */ = {19 isa = PBXBuildStyle;20 buildSettings = {21 COPY_PHASE_STRIP = NO;22 GCC_DYNAMIC_NO_PIC = NO;23 GCC_ENABLE_FIX_AND_CONTINUE = YES;24 GCC_GENERATE_DEBUGGING_SYMBOLS = YES;25 GCC_OPTIMIZATION_LEVEL = 0;26 OPTIMIZATION_CFLAGS = "-O0";27 ZERO_LINK = YES;28 };29 name = Development;30 };31 014CEA4A0018CE3211CA2923 /* Deployment */ = {32 isa = PBXBuildStyle;33 buildSettings = {34 COPY_PHASE_STRIP = YES;35 GCC_ENABLE_FIX_AND_CONTINUE = NO;36 ZERO_LINK = NO;37 };38 name = Deployment;39 };40 /* End PBXBuildStyle section */41 42 17 /* Begin PBXFileReference section */ 43 18 08FB7796FE84155DC02AAC07 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; tabWidth = 8; }; 44 19 09AB6884FE841BABC02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; }; 45 E194197009C40AFB00266191 /* launch */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = "compiled.mach-o.executable"; path = launch; sourceTree = BUILT_PRODUCTS_DIR; };20 E194197009C40AFB00266191 /* launch */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = launch; sourceTree = BUILT_PRODUCTS_DIR; }; 46 21 F561F49F0139D7DD01AEEDB1 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = "<absolute>"; }; 47 22 F574340B01B8A47B01AEEDB1 /* VERSION */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = VERSION; sourceTree = "<group>"; }; … … 117 92 buildRules = ( 118 93 ); 119 buildSettings = {120 FRAMEWORK_SEARCH_PATHS = "";121 HEADER_SEARCH_PATHS = "";122 INSTALL_PATH = "\U0001$(HOME)/bin";123 LIBRARY_SEARCH_PATHS = "";124 OTHER_CFLAGS = "";125 OTHER_LDFLAGS = "";126 OTHER_REZFLAGS = "";127 PRODUCT_NAME = launch;128 REZ_EXECUTABLE = YES;129 SECTORDER_FLAGS = "";130 WARNING_CFLAGS = (131 "-Wmost",132 "-Wno-four-char-constants",133 "-Wno-unknown-pragmas",134 );135 };136 94 dependencies = ( 137 95 ); … … 148 106 isa = PBXProject; 149 107 buildConfigurationList = E194195609C40AD400266191 /* Build configuration list for PBXProject "launch" */; 150 buildSettings = {151 MACOSX_DEPLOYMENT_TARGET = 10.2;152 SDKROOT = /Developer/SDKs/MacOSX10.2.8.sdk;153 };154 buildStyles = (155 014CEA490018CE3211CA2923 /* Development */,156 014CEA4A0018CE3211CA2923 /* Deployment */,157 );158 108 hasScannedForEncodings = 1; 159 109 mainGroup = 08FB7794FE84155DC02AAC07 /* launch */; … … 185 135 ); 186 136 MACOSX_DEPLOYMENT_TARGET = 10.4; 137 PREBINDING = NO; 187 138 SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; 188 139 }; … … 197 148 ); 198 149 MACOSX_DEPLOYMENT_TARGET = 10.4; 150 PREBINDING = NO; 199 151 SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; 200 152 }; -
trunk/launch/launch/main.c
r303 r305 33 33 const char *APP_NAME; 34 34 35 #define VERSION "1.1 d2"35 #define VERSION "1.1b1" 36 36 37 37 #define STRBUF_LEN 1024 -
trunk/launch/package-launch.sh
r267 r305 12 12 chmod 755 launch && \ 13 13 chmod 644 launch.1 && \ 14 rm -rf build/launch.build build/intermediates build/.gdb_history && \15 14 VERSION=`cat VERSION` TARBALL="launch-$VERSION.tar.gz" && \ 16 15 cd .. && \ 17 16 rm -f launch-$VERSION $TARBALL $DMG && \ 18 17 ln -s launch launch-$VERSION && \ 19 tar --owner=root --group=wheel --exclude=.DS_Store --exclude=.svn --exclude=.gdb_history - zchf launch-$VERSION.tar.gz launch-$VERSION && \18 tar --owner=root --group=wheel --exclude=.DS_Store --exclude=.svn --exclude=.gdb_history --exclude=build --exclude=\*.mode2 --exclude=\*.pbxuser --exclude=\*.perspective -zchf launch-$VERSION.tar.gz launch-$VERSION && \ 20 19 scp $TARBALL ainaz:web/nriley/software/ #$DMG 21 20 :
Note:
See TracChangeset
for help on using the changeset viewer.