1 Star 0 Fork 0

夏谷涵/ElasticFusion

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Findefusion.cmake 1020 Bytes
一键复制 编辑 原始数据 按行查看 历史
Thomas Whelan 提交于 2016-10-18 22:06 +08:00 . small cleanups for windows support merge
###############################################################################
# Find efusion
#
# This sets the following variables:
# EFUSION_FOUND - True if EFUSION was found.
# EFUSION_INCLUDE_DIRS - Directories containing the EFUSION include files.
# EFUSION_LIBRARIES - Libraries needed to use EFUSION.
find_path(EFUSION_INCLUDE_DIR ElasticFusion.h
PATHS
${CMAKE_CURRENT_SOURCE_DIR}/../../Core/src
PATH_SUFFIXES Core
)
find_library(EFUSION_LIBRARY
NAMES libefusion.so
PATHS
${CMAKE_CURRENT_SOURCE_DIR}/../../Core/build
${CMAKE_CURRENT_SOURCE_DIR}/../../Core/src/build
PATH_SUFFIXES ${EFUSION_PATH_SUFFIXES}
)
set(EFUSION_INCLUDE_DIRS ${EFUSION_INCLUDE_DIR})
set(EFUSION_LIBRARIES ${EFUSION_LIBRARY})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(EFUSION DEFAULT_MSG EFUSION_LIBRARY EFUSION_INCLUDE_DIR)
if(NOT WIN32)
mark_as_advanced(EFUSION_LIBRARY EFUSION_INCLUDE_DIR)
endif()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gxdcode/ElasticFusion.git
git@gitee.com:gxdcode/ElasticFusion.git
gxdcode
ElasticFusion
ElasticFusion
master

搜索帮助