tags:

views:

230

answers:

1

Hello !

I was trying to compile and project file ,taken freshly from the VSS and it was throwing an error

          could not create output file" release\emsDataAccess.dcu " .

Strangely the error was pointing to line "90" where as the last line of code in the error-file (emsDataAccess.pas) is"75".

Kindly help! Regards -Vas

+5  A: 

Does your release subdirectory exist? The compiler won't create it for you, and if it's not in the VSS repository chances are it's missing in a fresh checkout.

mghie
yes there is an empty release sub-directory in the VSS named "release".So I have to created a sub-directory in the folder "release" in my current project folder, and it worked.Thanks a bunch mghie.Have a nice day!
vas
i was observing in my VSS , that not all the Projects have an "release subdirectory "...only some projects have them .whats the criteria/guidelines when a project needs an release subdirectory?Do have to interact with the DB?
vas
vas: You should consult with the creator / owner of the projects in VSS. There are no rules, just best practices. However, all directories referenced in the project need to be there, either directly from the checkout, or from a helper script preparing the build after checkout.
mghie