-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xcode project #268
base: master
Are you sure you want to change the base?
Xcode project #268
Conversation
Thanks for doing this @Easen! What is the purpose of the make-wrapper.sh file btw? |
I should have explained... It's a bit hacky I know, but until XCode fixes this bug (which I think they wont) this is the only way I found to get around this issue. |
Ahh I see now. So that handles building the project, but to package it up and install it you would still have to run Which coincidentally makes the project....so I guess my next question is, is there a way to hook into Xcode's native "Build and Run"? Being an optional workflow for building the project, even though incomplete, it doesn't look like there's much harm in using Xcode in this fashion. |
I don't know about the "Build and Run" option, I think you can't because it's an external target. However in XCode 4 you could create a new target based on the target I've already created and set the arguments to |
I've had good luck using Really original I know. |
Really really great work Marc! We should definitely look into grabbing the Build & Run and deploying the packaged to the device... |
This works better if you set a shell variable of I also think it's a better idea to not include the shell variable for the SDK version. I'm running 4.3 but you were running 4.2. We already have it set in the readme that the developer needs to add these for themselves so redeclaring them in |
Actually I take it back, you're right....those variables HAVE to be set in that script. Drats. |
The "Directory" field may actually be left empty, that way Xcode will use the actual project folder by default. Also in order to be able to run
In my case I've linked the "Build" action to if [ "$ACTION" == "clean" ] |
Hi Peter,
How are you?
Once again I've been a bit busy, I managed to create a XCode project for MobileNotifier and hooked in the build and clean functions. I'm guessing that you code in vim, I'm familiar with vim but I prefer to use XCode for iPhone projects this is why I created the XCode project. Please have a look and let me know what you think.
Cheers,
Marc