tde_add_library: Add the ability to link libraries as private.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/53/head
Slávek Banko 4 years ago
parent 2a847be412
commit d504c98bb7
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -787,6 +787,7 @@ macro( tde_add_library _arg_target )
unset( _destination ) unset( _destination )
unset( _embed ) unset( _embed )
unset( _link ) unset( _link )
unset( _link_private )
unset( _dependencies ) unset( _dependencies )
unset( _storage ) unset( _storage )
unset( _exclude_from_all ) unset( _exclude_from_all )
@ -881,6 +882,12 @@ macro( tde_add_library _arg_target )
set( _storage "_link" ) set( _storage "_link" )
endif( "+${_arg}" STREQUAL "+LINK" ) endif( "+${_arg}" STREQUAL "+LINK" )
# found directive "LINK_PRIVATE"
if( "+${_arg}" STREQUAL "+LINK_PRIVATE" )
set( _skip_store 1 )
set( _storage "_link_private" )
endif( "+${_arg}" STREQUAL "+LINK_PRIVATE" )
# found directive "DEPENDENCIES" # found directive "DEPENDENCIES"
if( "+${_arg}" STREQUAL "+DEPENDENCIES" ) if( "+${_arg}" STREQUAL "+DEPENDENCIES" )
set( _skip_store 1 ) set( _skip_store 1 )
@ -1044,6 +1051,17 @@ macro( tde_add_library _arg_target )
endif( ) endif( )
endif( _embed ) endif( _embed )
# set private linked libraries
if( _link_private )
if( NOT ${CMAKE_VERSION} VERSION_LESS "2.8.12" )
if( _link )
list( INSERT _link 0 "PUBLIC" )
endif()
list( APPEND _link "PRIVATE" )
endif()
list( APPEND _link ${_link_private} )
endif( _link_private )
# set link libraries # set link libraries
if( _link ) if( _link )
if( _embed AND ${CMAKE_VERSION} VERSION_EQUAL "2.8.12.0" ) if( _embed AND ${CMAKE_VERSION} VERSION_EQUAL "2.8.12.0" )

Loading…
Cancel
Save