Page 1 of 1

Objective-C from MinGW

Posted: Sun Mar 03, 2013 7:24 am
by rro4785
Hi!

How can I setting gcc-objc (on MinGW) on CodeLite?

Re: Objective-C from MinGW

Posted: Sun Mar 03, 2013 10:21 am
by eranif
Settings -> Build Settings -> Compilers -> New
And define new tool chain

Next create a new project:

1. Workspace -> New Project -> Console -> Simple Executable (g++)
2. Change the compiler type from the right side
3. Fill in the missing details (project name / path)
4. Click OK

You should now have a project with main.cpp file -> remove the file and add a new file of type Objective-C (right click on the 'src' folder and select "Add a New File")
You can now right click on the project and select "Save as template" and save it as template for future projects

Eran

Re: Objective-C from MinGW

Posted: Mon Nov 11, 2013 9:45 am
by rro4785
Cool!!! Thank you!!!