diff --git a/cmake/generic.cmake b/cmake/generic.cmake index eb0326961e2c76e2c019773103c4a52c1c04e4b2..f92cbdc65efa596e4aff95ace71a36540f88688a 100644 --- a/cmake/generic.cmake +++ b/cmake/generic.cmake @@ -92,16 +92,16 @@ if(NOT APPLE) endif(NOT APPLE) function(merge_static_libs TARGET_NAME) - set(libs ${ARGN}) - list(REMOVE_DUPLICATES libs) + set(libs ${ARGN}) + list(REMOVE_DUPLICATES libs) - # First get the file names of the libraries to be merged - foreach(lib ${libs}) - get_target_property(libtype ${lib} TYPE) - if(NOT libtype STREQUAL "STATIC_LIBRARY") - message(FATAL_ERROR "merge_static_libs can only process static libraries") - endif() - set(libfiles ${libfiles} $) + # First get the file names of the libraries to be merged + foreach(lib ${libs}) + get_target_property(libtype ${lib} TYPE) + if(NOT libtype STREQUAL "STATIC_LIBRARY") + message(FATAL_ERROR "merge_static_libs can only process static libraries") + endif() + set(libfiles ${libfiles} $) endforeach() if(APPLE) # Use OSX's libtool to merge archives