I have problem with that.
I create small test project, one form with one visual component. Visual component is a part of, for example, devex library.
I want to not recompile devex every time I must build project, so:
1) I build my project once,
2) I copied devex .dcu from project output dir to a separate directory (for example "builded_dcu")
3) I remove path to devex source files from Library path and put it to Browse path
4) I put path to "builded_dcu" folder to Delphi Library path.
And...
If I compile, it's work. Delphi use ""builded_dcu" as source of Devex .dcu, compile only my own code, everything is ok. But when I build my project, Delphi want access to .dfm and .res files from Devex source.
What i do wrong?
I must build my own code, because i use simultaneously 2 or more build configurations with different conditional defines with my own code.
Workaround will be put in Library path first path to "builded_dcu", then path to Devex source, but when I build, I build all, my own code and Devex code. I must copy every single .dfm and .res from Devex to "builded_dcu" folder? Or is a other way, and I do some terrible mistake?