@
JustinL 他可以编译成不同的文件给你,有的文件不想给源代码,就编译 release 的版本,想给源代码,就带 pas 给你,但如果带 pas 给你,那他得编译两套,也就是 debug 和 release 的 dcus 都要给你,不然你在 ide 的 debug 下可能无法编译部分文件。
你的项目中,点击 Project->Project Options, Delphi Compiler->Search path 里,加上它给你的所有 dcu 所在的目录即可编译。注意如果他给你了 debug 和 release 两个版本的 dcu ,那么你在 Project Options, Delphi Compiler, Target 里,要给 debug configuration 和 release configuration 设置不同的 Search path ( debug configuration 使用包含它 debug 版本的 dcus 文件的目录、release configuration 使用包含它 release 版本的 dcus 文件的目录),然后你直接在你的 pas 的 uses 里引用它的单元即可编译。