We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 648c64c + 08e529d commit 3e4680cCopy full SHA for 3e4680c
1 file changed
scripts/cmake/hackerrank_challenge.cmake
@@ -13,10 +13,10 @@ macro(hackerrank_setup_project)
13
set_target_properties(${ProjectId} PROPERTIES FOLDER "${ProjectFolder}")
14
15
if (USE_CONAN_LIBS)
16
- target_link_libraries(${ProjectId} ${CONAN_LIBS} m)
+ target_link_libraries(${ProjectId} ${CONAN_LIBS})
17
else()
18
include_directories(${Boost_INCLUDE_DIRS} ${JsonCpp_INCLUDE_DIRS})
19
- target_link_libraries(${ProjectId} ${Boost_LIBRARIES} ${JsonCpp_LIBRARIES} m)
+ target_link_libraries(${ProjectId} ${Boost_LIBRARIES} ${JsonCpp_LIBRARIES})
20
endif (USE_CONAN_LIBS)
21
endmacro()
22
0 commit comments