summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wing <ewing . public |-at-| gmail . com>2010-05-12 12:49:28 -0700
committerEric Wing <ewing . public |-at-| gmail . com>2010-05-12 12:49:28 -0700
commit9919f22b4f9d35fec22485f4b666f11dea4a724e (patch)
tree9172aa952c8a9551d124fb9065d0b68d4dd6f5e6
parentf7c19001536b225030e6409059993a24809b8c83 (diff)
Added the automated test plist file and modified .hgignore to be less aggressive.
Discovered that the new plist file for the automated test was not checked in because the .hgignore file was too aggressive. I changed the .hgignore to not ignore the Xcode directory and instead added a longer list of things to ignore.
-rw-r--r--.hgignore14
-rw-r--r--Xcode/SDL/testsdl-Info.plist28
2 files changed, 41 insertions, 1 deletions
diff --git a/.hgignore b/.hgignore
index f9ca7b01..8ec7021e 100644
--- a/.hgignore
+++ b/.hgignore
@@ -14,7 +14,19 @@ build
build-deps
VisualC
VisualCE
-Xcode
+# for Xcode
+*.orig
+*.swp
+*.tmp
+*.rej
+*~
+*.o
+*.mode1*
+*.model*
+*.perspective*
+*.perspective*
+*.pbxuser
+(^|/)build($|/)
.DS_Store
sdl.pc
include/SDL_config.h
diff --git a/Xcode/SDL/testsdl-Info.plist b/Xcode/SDL/testsdl-Info.plist
new file mode 100644
index 00000000..88ac6abc
--- /dev/null
+++ b/Xcode/SDL/testsdl-Info.plist
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>CFBundleExecutable</key>
+ <string>${EXECUTABLE_NAME}</string>
+ <key>CFBundleIdentifier</key>
+ <string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>1</string>
+ <key>LSMinimumSystemVersion</key>
+ <string>${MACOSX_DEPLOYMENT_TARGET}</string>
+ <key>NSMainNibFile</key>
+ <string>SDLMain</string>
+ <key>NSPrincipalClass</key>
+ <string>NSApplication</string>
+</dict>
+</plist>