在RelWithDebInfo模式下

在RelWithDebInfo模式下

这是我的主要cmake文件:

project( reconstructor )
cmake_minimum_required(VERSION 3.1)
set(CMAKE_SUPPRESS_REGENERATION true)
include(ExternalProject)
set(Boost_INCLUDE_DIR c:/boost_1_66_0)
set(Boost_LIBRARY_DIR C:/boost_1_66_0/lib64-msvc-14.0 )
SET("OpenCV_DIR" "C:/opencv-3.4.0/build")
find_package( OpenCV COMPONENTS core imgproc highgui aruco optflow REQUIRED )
add_subdirectory(prepare_folder)
add_subdirectory(draw_signal)
add_subdirectory(epipolar_reconstructor)
add_subdirectory(test_detection)
add_subdirectory(homography_matcher)
add_subdirectory(multiview)
add_subdirectory(filter_clouds)
add_subdirectory(filter_clouds_solid)
add_subdirectory(optical_flow)
add_subdirectory(prepare_splices)
add_subdirectory(skew_matcher)
add_subdirectory(triangle_matcher)

和我的子项目文件:
cmake_minimum_required(VERSION 3.1)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
get_filename_component(CUR_PROJECT_NAME ${CMAKE_CURRENT_SOURCE_DIR} NAME)
find_package(Boost COMPONENTS system filesystem REQUIRED)
link_directories(${Boost_LIBRARY_DIR})
FILE(GLOB cpps *.cpp)
FILE(GLOB commons ../common/*.c*)
add_executable( ${CUR_PROJECT_NAME}  ${cpps} ${commons})
set_target_properties(${CUR_PROJECT_NAME} PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
include_directories(${Boost_INCLUDE_DIR})
target_link_libraries( ${CUR_PROJECT_NAME} ${OpenCV_LIBS} ${Boost_LIBRARIES})

但是我无法在RelWithDebInfo模式下进行构建,在这种情况下,MSVC给了我这些链接错误:
1>epipolar_reconstructor.obj : error LNK2019: unresolved external symbol "void __cdecl cv::Rodrigues(class cv::_InputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &)" (?Rodrigues@cv@@YAXAEBV_InputArray@1@AEBV_OutputArray@1@1@Z) referenced in function "struct std::pair<class cv::Mat,class cv::Mat> __cdecl calcR(struct View &,struct View &)" (?calcR@@YA?AU?$pair@VMat@cv@@V12@@std@@AEAUView@@0@Z)
1>triangulate.obj : error LNK2001: unresolved external symbol "void __cdecl cv::Rodrigues(class cv::_InputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &)" (?Rodrigues@cv@@YAXAEBV_InputArray@1@AEBV_OutputArray@1@1@Z)
1>epipolar_reconstructor.obj : error LNK2019: unresolved external symbol "void __cdecl cv::stereoRectify(class cv::_InputArray const &,class cv::_InputArray const &,class cv::_InputArray const &,class cv::_InputArray const &,class cv::Size_<int>,class cv::_InputArray const &,class cv::_InputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,class cv::_OutputArray const &,int,double,class cv::Size_<int>,class cv::Rect_<int> *,class cv::Rect_<int> *)" (?stereoRectify@cv@@YAXAEBV_InputArray@1@000V?$Size_@H@1@00AEBV_OutputArray@1@2222HN1PEAV?$Rect_@H@1@3@Z) referenced in function "void __cdecl handlePair(struct View &,struct View &,struct Folder &)" (?handlePair@@YAXAEAUView@@0AEAUFolder@@@Z)

(调试/发布版本正常)如何解决此问题?

最佳答案

即使我无法在RelWithDebInfo模式下进行构建,我也找到了一种解决方法。在您的MSVC项目中启用调试信息,它将允许您跟踪崩溃堆栈的位置:

c&#43;&#43; - 如何在RelWithDebInfo模式下构建依赖于opencv 3.4.0的项目-LMLPHP

c&#43;&#43; - 如何在RelWithDebInfo模式下构建依赖于opencv 3.4.0的项目-LMLPHP

c&#43;&#43; - 如何在RelWithDebInfo模式下构建依赖于opencv 3.4.0的项目-LMLPHP

关于c++ - 如何在RelWithDebInfo模式下构建依赖于opencv 3.4.0的项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49462043/

10-11 04:38