如何将 FetchContent_Populate 与 Eigen 一起使用?
How to use FetchContent_Populate with Eigen?
我想使用 FetchContent
为我的项目自动管理对 Eigen 的依赖,这通常有效。但是,当使用 FetchContent_Declare()
和 FetchContent_MakeAvailable()
的推荐方法时,随后调用 install
也会安装所有 Eigen headers 和文档,这在我的情况下不是必需的。
为了避免这种行为,我尝试了这个答案中建议的方法:Disable install for FetchContent
FetchConten_Populate()
但是无法填充变量 ${Eigen_SOURCE_DIR}
和 ${Eigen_BIN_DIR}
(文档告诉我应该发生)所以我不能调用 add_subdirectory()
.
这是最小的 CMakeLists.txt
:
cmake_minimum_required (VERSION 3.12)
project (FetchContentExample)
include (FetchContent)
FetchContent_Declare(
Eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
GIT_TAG 3.4.0
)
FetchContent_GetProperties(Eigen)
if(NOT Eigen_POPULATED)
FetchContent_Populate(Eigen)
message("SRC; ${Eigen_SOURCE_DIR}") # Apparently empty?
message("BIN: ${Eigen_BINARY_DIR}") # Apparently empty?
add_subdirectory(${Eigen_SOURCE_DIR} ${Eigen_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()
add_executable(FetchContentExample
main.cpp
)
target_link_libraries (FetchContentExample
PRIVATE
Eigen3::Eigen
)
install(
TARGETS FetchContentExample
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT Runtime
)
当我使用例如
时,相同的设置工作正常
FetchContent_Declare(
fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
GIT_TAG 5.3.0
)
而不是 Eigen。
关于 Eigen,我具体做错了什么?
FetchContent_Populate()
however fails to fill the variables ${Eigen_SOURCE_DIR}
and ${Eigen_BINARY_DIR}
(which the documentation told me should happen).
实际上,FetchContent 填充变量 ${eigen_SOURCE_DIR}
和 ${eigen_BINARY_DIR}
,它们的名称是根据项目名称的 小写 变体构造的。这是写在documentation:
FetchContent_Populate() will set three variables in the scope of the caller:
<lowercaseName>_POPULATED
This will always be set to TRUE by the call.
<lowercaseName>_SOURCE_DIR
The location where the populated content can be found upon return.
<lowercaseName>_BINARY_DIR
A directory intended for use as a corresponding build directory.
因此 EXCLUDE_FROM_ALL 包含 Eigen 的正确命令顺序为:
FetchContent_GetProperties(Eigen)
if(NOT eigen_POPULATED)
FetchContent_Populate(Eigen)
add_subdirectory(${eigen_SOURCE_DIR} ${eigen_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()
我想使用 FetchContent
为我的项目自动管理对 Eigen 的依赖,这通常有效。但是,当使用 FetchContent_Declare()
和 FetchContent_MakeAvailable()
的推荐方法时,随后调用 install
也会安装所有 Eigen headers 和文档,这在我的情况下不是必需的。
为了避免这种行为,我尝试了这个答案中建议的方法:Disable install for FetchContent
FetchConten_Populate()
但是无法填充变量 ${Eigen_SOURCE_DIR}
和 ${Eigen_BIN_DIR}
(文档告诉我应该发生)所以我不能调用 add_subdirectory()
.
这是最小的 CMakeLists.txt
:
cmake_minimum_required (VERSION 3.12)
project (FetchContentExample)
include (FetchContent)
FetchContent_Declare(
Eigen
GIT_REPOSITORY https://gitlab.com/libeigen/eigen.git
GIT_TAG 3.4.0
)
FetchContent_GetProperties(Eigen)
if(NOT Eigen_POPULATED)
FetchContent_Populate(Eigen)
message("SRC; ${Eigen_SOURCE_DIR}") # Apparently empty?
message("BIN: ${Eigen_BINARY_DIR}") # Apparently empty?
add_subdirectory(${Eigen_SOURCE_DIR} ${Eigen_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()
add_executable(FetchContentExample
main.cpp
)
target_link_libraries (FetchContentExample
PRIVATE
Eigen3::Eigen
)
install(
TARGETS FetchContentExample
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT Runtime
)
当我使用例如
时,相同的设置工作正常FetchContent_Declare(
fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
GIT_TAG 5.3.0
)
而不是 Eigen。 关于 Eigen,我具体做错了什么?
FetchContent_Populate()
however fails to fill the variables${Eigen_SOURCE_DIR}
and${Eigen_BINARY_DIR}
(which the documentation told me should happen).
实际上,FetchContent 填充变量 ${eigen_SOURCE_DIR}
和 ${eigen_BINARY_DIR}
,它们的名称是根据项目名称的 小写 变体构造的。这是写在documentation:
FetchContent_Populate() will set three variables in the scope of the caller:
<lowercaseName>_POPULATED
This will always be set to TRUE by the call.
<lowercaseName>_SOURCE_DIR
The location where the populated content can be found upon return.
<lowercaseName>_BINARY_DIR
A directory intended for use as a corresponding build directory.
因此 EXCLUDE_FROM_ALL 包含 Eigen 的正确命令顺序为:
FetchContent_GetProperties(Eigen)
if(NOT eigen_POPULATED)
FetchContent_Populate(Eigen)
add_subdirectory(${eigen_SOURCE_DIR} ${eigen_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()