Merge pull request #180 from proski/boost-only-needed-libraries

Link against specific Boost libraries, avoid using Boost_LIBRARIES
pull/169/merge
Vitaliy Filippov 2018-07-23 02:39:34 +03:00 committed by GitHub
commit 8384f0c983
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -17,7 +17,6 @@ add_executable( grive_executable
) )
target_link_libraries( grive_executable target_link_libraries( grive_executable
${Boost_LIBRARIES}
grive grive
) )

View File

@ -83,7 +83,10 @@ target_link_libraries( grive
${YAJL_LIBRARIES} ${YAJL_LIBRARIES}
${CURL_LIBRARIES} ${CURL_LIBRARIES}
${LIBGCRYPT_LIBRARIES} ${LIBGCRYPT_LIBRARIES}
${Boost_LIBRARIES} ${Boost_FILESYSTEM_LIBRARY}
${Boost_PROGRAM_OPTIONS_LIBRARY}
${Boost_REGEX_LIBRARY}
${Boost_SYSTEM_LIBRARY}
${IBERTY_LIBRARY} ${IBERTY_LIBRARY}
${EXPAT_LIBRARY} ${EXPAT_LIBRARY}
${OPT_LIBS} ${OPT_LIBS}
@ -126,7 +129,6 @@ IF ( CPPUNIT_FOUND )
target_link_libraries( unittest target_link_libraries( unittest
grive grive
${CPPUNIT_LIBRARY} ${CPPUNIT_LIBRARY}
${Boost_LIBRARIES}
) )
ENDIF ( CPPUNIT_FOUND ) ENDIF ( CPPUNIT_FOUND )
@ -139,7 +141,7 @@ add_executable( btest ${BTEST_SRC} )
target_link_libraries( btest target_link_libraries( btest
grive grive
${Boost_LIBRARIES} ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
) )
if ( WIN32 ) if ( WIN32 )