CMake ExternalProject_Add() 和 FindPackage()
问题描述
是否有正确的方法可以找到使用 ExternalProject_Add()
构建的库(通过 FindPackage()
)?
Is there are proper way to find a library (via FindPackage()
) which was built with ExternalProject_Add()
?
问题是 CMake 在 CMake 时找不到库,因为外部库是在编译时构建的.我知道在超级构建中构建库和项目时可以组合这两个 CMake 函数,但我想在普通的 CMake 项目中使用它.
The problem is that CMake cannot find the library at CMake-time because the external library gets build at compile time. I know that it is possible to combine these two CMake function when building the library and the project in a superbuild but I want to use it in a normal CMake project.
事实上,我想使用 ExternalProject_Add
构建 VTK 6,并在我的 CMake 项目中使用 FindPackage
找到它.
In fact I would like to build VTK 6 with ExternalProject_Add
and find it with FindPackage
all inside my CMake project.
推荐答案
有一种方法可以做到这一点.但它有点hackish.您基本上添加了一个自定义目标,在构建期间重新运行 cmake.
there is a way to do this. but it´s kind of hackish. you basically add a custom target, that reruns cmake during build.
你必须在一个小型测试项目中尝试这个,以确定它是否适合你
you will have to try this in a small test project, to decide if it works for you
这似乎适用于 mingw makefiles/eclipse makefile 项目.vs 会在第一次构建后请求重新加载所有项目.
this seems to work well for mingw makefiles / eclipse makefile projects. vs will request to reload all projects after first build.
这篇关于CMake ExternalProject_Add() 和 FindPackage()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!