Restore Xcode debugging with newer builds.

This commit is contained in:
Jason Felds
2015-04-18 13:58:16 -04:00
parent 8ead89d484
commit 283de4f0c2
5 changed files with 39 additions and 16 deletions
+1 -1
View File
@@ -28,7 +28,7 @@
</dict>
</array>
<key>CFBundleExecutable</key>
<string>@SM_EXE_NAME@</string>
<string>PRODUCT_NAME</string>
<key>CFBundleGetInfoString</key>
<string>@SM_EXE_NAME@ @SM_VERSION_TRADITIONAL@</string>
<key>CFBundleIconFile</key>
+10
View File
@@ -0,0 +1,10 @@
#if defined(DEBUG)
#define PRODUCT_NAME @SM_NAME_DEBUG@
#elif defined(MINSIZEREL)
#define PRODUCT_NAME @SM_NAME_MINSIZEREL@
#elif defined(RELWITHDEBINFO)
#define PRODUCT_NAME @SM_NAME_RELWITHDEBINFO@
#else
#define PRODUCT_NAME @SM_NAME_RELEASE@
#endif