我正在尝试编译LibTiff For Android,因此找到了使用Cmake脚本的源代码
https://bitbucket.org/edgarv/libtiff-cmake在这里,当我尝试从cmake-gui运行cmake脚本时,它会给出如下错误
Unknown CMake command "CHECK_LIBRARY_EXISTS"
最佳答案
CHECK_LIBRARY_EXISTS是CheckLibraryExists模块的功能.您需要包含相应的模块才能使用它:
原文链接:https://www.f2er.com/android/430966.htmlinclude(CheckLibraryExists)
CHECK_LIBRARY_EXISTS(...)