Jump to content
2 posts in this topic

Recommended Posts

Hello all, I'm planning to implement OSX support on a open source app that I use on windows, it's made on portable c++ but the devs can't test it under osx and OSX support is broken. I tried with xcode, but it's SVN integration is horrible, so I thought to use eclipse because I use it at work and I love it's SVN integration (subclipse plugin). But I have a problem, when creating a project, eclipse forces me to specify a unique target plattform and I want to make OSX, Linux and Win32 builds to test that the changes I make are still multi-plattform and doesn't break others. It's possile to make a project for the three plattforms or I'm forced to keep 3 projects and make the changes in all?

 

Thanks and sorry about my horrible english skills ;P

Link to comment
https://www.insanelymac.com/forum/topic/39005-portable-c-on-eclipse/
Share on other sites

im not sure how it works for C++ stuff, but when deving java stuff you can have projects which depend on other projects. maybe you can have one 'core' project with all the platform-independent stuff (which should be most of it... right?) and then a one project for each target platform, which depends on the core project and extends it with platform-specific stuff.

×
×
  • Create New...