1

我应该在我的 jamroot.jam 文件中添加什么,以便 libAPLibrary.so 与 MyProject 编译的结果相关联?

根
  |-我的项目
  | |-jamroot.jam
  |
  |-另一个项目
      |-库
          |-libAPLibrary.so
4

1 回答 1

1

如果库 libAPLibrary.so 已经编译,您应该声明它并将其链接到项目,这样:

lib libAPLibrary : : 
    # watch out for empty spaces, they are mandatory
    <file>../AnotherProject/lib/libAPLibrary.so ;

exe MyProject
    : 
        # your project sources here
        # this is a generic filter but you 
        # can replace it with file names
        [ glob *.c* ] 

        # external libraries
        libAPLibrary
;
于 2012-07-18T11:14:01.823 回答