macfusion-ng / macfusion2

Macfusion2
225 stars 28 forks source link

Building #3

Closed alexreg closed 10 years ago

alexreg commented 11 years ago

I succeeded in building the app from the command-line, thought in spite of the relative simplicity, it may be handy to include a BUILDING.md file in root or such.

Since I prefer running most things from the command-line, the following command did the trick for me on OS X 10.8 (Mountain Lion)

xcodebuild -sdk macosx10.8 -target All

For some reason it still defaults to use the 10.6 SDK. Personally I think this should be upgraded at least to 10.7, and a note put in the BUILDING file. I also suggest that the default target be 'All' rather than 'MFCore' (as it currently seems to be).

ElDeveloper commented 11 years ago

Makes sense, either a file named BUILDING.md or a section in the wiki and therefore the creation of a wiki. If you are familiar with git I would definitely encourage you to issue a pull request with the file that you are describing.


For some reason it still defaults to use the 10.6 SDK. Personally I think this should be upgraded at least to 10.7, and a note put in the BUILDING file.

Yes 10.6 is the default SDK, I like this backwards compatibility, which I think is :cool: and has not caused any issue (not that I know of).

I also suggest that the default target be 'All' rather than 'MFCore' (as it currently seems to be).

This cannot be changed without adding some files from the *.xcodeproj folder. I don't like having any other files from the *.xcodeproj folder added to the repository besides the project.pbxproj file, because then commits and other stuff are prone to a lot of confusion. I however could be missing something, if so let me know.

ElDeveloper commented 11 years ago

Needless to say if you needed any help with git/github or whatever, let me know and I'll be glad to help.

alexreg commented 11 years ago

Okay, that sounds fair enough. I'll try to create such a file soon(ish) and will issue a pull request when ready! Thanks for your willingness to include these things.

Also, I'm not very familiar at all with the XCode build system, so I'll take your word for it on the matter of default build target.

On 28 Dec 2012, at 03:48, Yoshiki notifications@github.com wrote:

Makes sense, either a file named BUILDING.md or a section in the wiki and therefore the creation of a wiki. If you are familiar with git I would definitely encourage you to issue a pull request with the file that you are describing.

For some reason it still defaults to use the 10.6 SDK. Personally I think this should be upgraded at least to 10.7, and a note put in the BUILDING file.

Yes 10.6 is the default SDK, I like this backwards compatibility, which I think is and has not caused any issue (not that I know of).

I also suggest that the default target be 'All' rather than 'MFCore' (as it currently seems to be).

This cannot be changed without adding some files from the .xcodeproj folder. I don't like having any other files from the .xcodeproj folder added to the repository besides the project.pbxproj, because it's prone to a lot of confusion. I however could be missing something, if so let me know.

— Reply to this email directly or view it on GitHub.

ElDeveloper commented 10 years ago

Fixed by @Bit32 in #10