本文介绍了如何向CMake添加框架的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我编写了一个小的helloworld程序,该程序需要Cocoa框架.我想知道如何在CMake中添加框架.我发现的所有信息都是过时的.我在Snow Leopard上安装了CMake 2.8.1.
I have written a small helloworld program that needs the Cocoa framework. I'd like to know how to add a framework in CMake. All the information I have found is out-of-date. I have CMake 2.8.1 on Snow Leopard.
推荐答案
您可以只使用 find_library
像这样:find_library(COCOA_LIBRARY Cocoa)
?
然后在 target_link_libraries
中使用${COCOA_LIBRARY}
.可以将 CMAKE_FIND_FRAMEWORK
变量设置为ONLY
.
此外,请参阅本文:如何使用现有的OSX框架.
这篇关于如何向CMake添加框架的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!