Closed. This question needs to be more focused。它当前不接受答案。












想改善这个问题吗?更新问题,使其仅关注editing this post的一个问题。

4年前关闭。



Improve this question




我已经生成了libBox2D.a。现在,我想将其导入C++项目,但是我不知道如何。如何使用CMake将libBox2D.a导入项目?

最佳答案

试试这个:

find_library(LIBBOX2D Box2D DIRECTORY)

其中将DIRECTORY替换为libBox2D.a的位置。然后,您可以将此库链接到可执行文件:
target_link_libraries(exec ${LIBBOX2D})

09-30 00:12