-
Notifications
You must be signed in to change notification settings - Fork 25
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
Add Xcode generator #156
Comments
One of the design goals of cmake4eclipse is to have Eclipse project files that work cross-platform. |
Hi! Yes, it's a better way to add a new tab called "macOS" and also add in dropdown list generators for "Xcode", "Unix Makefiles" and "Ninja". So we'll have a possibility to build apps with help of Xcode generator for macOS and iOS targets. I could make all necessary changes in the code of cmake4eclipse, but I need help in plugin build and testing process, because I was unsuccessful with this last time I tried. |
Great if you want to help! Concerning build and testing, see https://github.com/15knots/cmake4eclipse#debug-and-build |
No, it doesn't. The only thing I should have installed Xcode IDE or Xcode command line tools, but it's out of "cmake4eclipse" or Eclipse responsibility. The build process is similar to "Unix Makefiles" or "Ninja" generators: cmake -G"Xcode" and cmake --build . --config Release. After this commands cmake generates Xcode project files and run builder. Actually for macOS target I can use "Unix Makefiles" or "Ninja" generators as well. But not for iOS. Because of code signing stuff for it is only suitable Xcode generator. |
It's not possible using cmake4eclipse for generating build instructions for iOS, because Unix Makefiles and Ninja do not
work correctly with iOS targets.
Could you add, please, "Xcode" switch to supported generators in "Buildscript generator (-G)" dropdown list on "Linux" tab on cmake4eclipse settings page?
The text was updated successfully, but these errors were encountered: