I've got a project that I've had building in XCode for a while now, and I've just upgraded to 2.1. My project setup had the executable (package) going into the root of its own directory structure that contains data files, log files, etc. I realize that this probably isn't the best way to do this on the mac (it would probably be better to bundle data files inside the package) but the primary platform is windows and I don't want to go too in-depth changing the version-control heirarchies etc, or automatically copying huge files as part of the build process.
This all worked fine in XCode 1.5 and 2.0, but now that 2.1 automatically puts products into Development or Deployment directories depending on the current configuration, the .app file ends up in the wrong place. My build products directory in the target preferences is set correctly, but the file automatically goes into a Development directory under it.
Is there any way to stop XCode from creating the Development/Deployment directories (but still retain the configurations for building) that's cleaner than just writing a shell script to copy the files over after the build?
This all worked fine in XCode 1.5 and 2.0, but now that 2.1 automatically puts products into Development or Deployment directories depending on the current configuration, the .app file ends up in the wrong place. My build products directory in the target preferences is set correctly, but the file automatically goes into a Development directory under it.
Is there any way to stop XCode from creating the Development/Deployment directories (but still retain the configurations for building) that's cleaner than just writing a shell script to copy the files over after the build?