在我正在研究的这个多语言GPRBuild项目中,我有一些c ++库文件(* .a)我需要链接到我的可执行文件中。是否有一个gpr属性来告诉它将-l -L开关传递给链接器的链接是什么或者无论如何都要链接?
答案 0 :(得分:6)
在主项目文件中,
package Linker is
for Default_Switches ("Ada") use ("-L/where/ever", "-lbar");
end Linker;
答案 1 :(得分:5)
甚至更好:
Project my_library is
For externally_built use "true";
For library_dir use "/where/ever";
For library_name use "mylibname";
For source_dirs use (); -- no sources.
For library_kind use "static";
-- if it is a static lib .a
-- for library_kind use "dynamic";
-- if it is an so.
End my_library;
并在应用程序项目中。 使用“my_library.gpr”;