Avoid linking against disabled features

If rsvg or startup-notification features are disabled, the
binary should not be linked against the associated libraries.
This commit is contained in:
Sebastian Reichel 2015-08-07 20:59:06 +02:00
parent 00b88c2725
commit f241c4546b

View file

@ -148,9 +148,13 @@ target_link_libraries( tint2 ${X11_LIBRARIES}
${CAIRO_LIBRARIES} ${CAIRO_LIBRARIES}
${GLIB2_LIBRARIES} ${GLIB2_LIBRARIES}
${GOBJECT2_LIBRARIES} ${GOBJECT2_LIBRARIES}
${IMLIB2_LIBRARIES} ${IMLIB2_LIBRARIES} )
${RSVG_LIBRARIES} if( ENABLE_RSVG )
${SN_LIBRARIES} ) target_link_libraries( tint2 ${RSVG_LIBRARIES} )
endif( ENABLE_RSVG )
if( ENABLE_SN )
target_link_libraries( tint2 ${SN_LIBRARIES} )
endif( ENABLE_SN )
if( RT_LIBRARY ) if( RT_LIBRARY )
target_link_libraries( tint2 ${RT_LIBRARY} ) target_link_libraries( tint2 ${RT_LIBRARY} )
endif( RT_LIBRARY ) endif( RT_LIBRARY )