3

Eclipse is set to compile to a build directory at 'bin'. I have a folder structure with various Java .class files (precompiled) which I want to copy into the folder 'bin' on compile.

How do I tell Eclipse to automatically do this?

durron597
  • 31,968
  • 17
  • 99
  • 158
meds
  • 21,699
  • 37
  • 163
  • 314
  • What kind of project is it? A web project? – Boden Jun 08 '09 at 16:21
  • 3
    possible duplicate of [How do I include .class files in my project in Eclipse? (Java)](http://stackoverflow.com/questions/661110/how-do-i-include-class-files-in-my-project-in-eclipse-java) – durron597 Aug 25 '15 at 15:43

1 Answers1

6

The 'Add Class Folder...' and 'Add External Class Folder...' buttons under 'Java Build Path' in the project properties seem to do exactly what you want.

Josef Pfleger
  • 74,165
  • 16
  • 97
  • 99