Hi,
I try to convert my existing XCode projects (using XCode v2.4 on OS X v10.4.10) to Eclipse ( v 3.3) & WOLips (and very soon WONDER) using the Java tool from Pascal Robert (XCodeToEclipse) pointed in the tutorials of WOLips/WOProject.
I've got the following problem with the relative paths used in the config.xml file. They aren't recognized as valid paht by the applicationĀ :
In the lines: File pathToXCodeProject = new File(project.getPath() + project.getName() + ".xcodeproj/");
// pathToXCodeProject is for example : ./D2WListExample/D2WListExample.xcodeproj
if (!(pathToXCodeProject.exists())) { System.out.println("Can't import " + project.getName() + ", no Xcode project found..."); } else { System.out.println("Importing " + project.getName() + "...");
the "Can't import " is stytematically triggered...
I solve that by changing my config file with an absolut path everywhere, but...
David. |