Skip to content

Commit 141952b

Browse files
author
Xavier Raemy
committed
Fix missing reference to Boost::math_c99 in CMakeLists.txt
1 parent 7f57821 commit 141952b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ if(APPLE)
110110
endif(APPLE)
111111

112112
# FIND BOOST
113-
set(BOOST_REQUIRED_COMPONENTS "atomic;chrono;date_time;filesystem;program_options;serialization;system;thread;timer")
113+
set(BOOST_REQUIRED_COMPONENTS "atomic;chrono;date_time;filesystem;program_options;serialization;system;thread;timer;math_c99")
114114
if(WIN32)
115115
set(BOOST_REQUIRED_COMPONENTS "${BOOST_REQUIRED_COMPONENTS};stacktrace_windbg")
116116
else()

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ if(CCTAG_WITH_CUDA)
174174
# since we used CUDA_ADD_LIBRARY we cannot use PUBLIC or PRIVATE here
175175
target_link_libraries(CCTag
176176
${OpenCV_LIBS}
177-
Boost::date_time Boost::chrono Boost::thread Boost::serialization Boost::system Boost::filesystem Boost::atomic Boost::program_options Boost::timer
177+
Boost::date_time Boost::chrono Boost::thread Boost::serialization Boost::system Boost::filesystem Boost::atomic Boost::program_options Boost::timer Boost::math_c99
178178
Eigen3::Eigen
179179
${TBB_LIBRARIES} ${CUDA_CUDADEVRT_LIBRARY})
180180

0 commit comments

Comments
 (0)