diff options
| author | Paul Kohut <paulkohut@Paul-Kohuts-Mac-Pro.local> | 2009-12-10 06:29:28 -0800 |
|---|---|---|
| committer | Paul Kohut <paulkohut@Paul-Kohuts-Mac-Pro.local> | 2009-12-10 06:29:28 -0800 |
| commit | f53401b2fbc498fe529214b8c0b365390830efe2 (patch) | |
| tree | 6aa59cfb3ff016a4715fb5a4414f3c95466b3597 /QSDeliciousPlugIn_Source.m | |
| parent | ba310e8b58d686ee9897b26a7edab5b778a8d96f (diff) | |
Organize Plugin Projects
1. Reference all plugins in AllElements.xcodeproj.
2. For each Plugin Project -
a. Refactor plugin to use common "xcconfig" files, located in QS_SOURCE_ROOT/configuration (Quicksilvers configuration files)
b. Change "Targets" - "Run Script" to "Run script only when installing"
c. Changed "Project" - "Edit Property Settings" - "Configuration" "Release" to be based on "Release".
i. Remove all setting overrides.
d. Changed "Project" - "Edit Property Settings" - "Configuration" "Debug" to be based on "Debug".
i. Removed all setting overrides.
e. Changed "Target" "Property Settings" - "Debug" to be based on "QSPlugIn_Debug"
i. Removed all setting overrides.
ii. Override "Other Flags" with -bundle
iii. Override "Product Name" with either value already there or found in info.plist.
iv. Add "ZERO_LINK" definition set to YES.
f. Changed "Target" "Property Settings" - "Release" to be based on "QSPlugIn_Release"
i. Removed all setting overrides.
ii. Override "Other Flags" with -bundle
iii. Override "Product Name" with either value already there or found in info.plist.
iv. Add "ZERO_LINK" definition set to NO.
g. Compile for both Release and Debug -
i. If program compiles then move project reference to "Compiles" group.
ii. Try and fix compiler errors moving project reference either to "compiles" or...
iii. If program won't compile move project reference to "Does not compile. Needs tweaking" group. These need to be examined later.
Diffstat (limited to 'QSDeliciousPlugIn_Source.m')
| -rw-r--r-- | QSDeliciousPlugIn_Source.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/QSDeliciousPlugIn_Source.m b/QSDeliciousPlugIn_Source.m index 899b847..1267654 100644 --- a/QSDeliciousPlugIn_Source.m +++ b/QSDeliciousPlugIn_Source.m @@ -9,6 +9,7 @@ #import "QSDeliciousPlugIn_Source.h" #import <QSCore/QSCore.h> +#define kQSDeliciousTagType @"us.icio.del.tag" #define DELICIOUS_API_URL @"api.del.icio.us/v1" #define MAGNOLIA_API_URL @"ma.gnolia.com/api/mirrord/v1" |