blob: eb6443e1c79a8d5b02d0367004b1e15633385526 [file] [log] [blame]
José Fonsecac56b9ac2014-06-25 13:46:35 +01001# Function for convenience libraries, ie., libraries which can be statically
2# linked into shared libraries.
3function (add_convenience_library)
4
5 set (name "${ARGV0}")
6 list (REMOVE_AT ARGV 0)
7
8 add_library ("${name}" STATIC ${ARGV})
9
José Fonsecac56b9ac2014-06-25 13:46:35 +010010 set_target_properties ("${name}" PROPERTIES
José Fonsecad9955392014-07-17 13:32:33 +010011 # Ensure it can be statically linked onto shared libraries
12 POSITION_INDEPENDENT_CODE ON
José Fonsecac56b9ac2014-06-25 13:46:35 +010013 )
14
15endfunction ()